This component no longer exists. It was in obsidianui’s manifest when we first indexed it and is not there now — the registry served its inventory on 2026-08-05 and this item was not on it. The install command below will fail. It is kept here because a tutorial somewhere still tells people to run it.
glow-border-card
obsidianui/glow-border-cardRemovedComponent
obsidianui publishes no description for this item.
Live preview
live · rendered by the registry
Rendered by obsidianui on their own page — this is the component running, not a screenshot of it.Install it
npx shadcn@latest add https://obsidianui.dev/r/glow-border-card.jsonSource
1'use client';23import React from 'react';4import { cn } from '@/lib/utils';56/**7 * Props for the GlowBorderCard component8 */9export interface GlowBorderCardProps extends React.HTMLAttributes<HTMLDivElement> {10 /**11 * Content to display inside the card12 */13 children?: React.ReactNode;1415 /**16 * Width of the card (CSS value)17 * @default "320px"18 */19 width?: string;2021 /**22 * Height of the card (CSS value). If not provided, uses aspect-ratio.23 */24 height?: string;2526 /**27 * Aspect ratio of the card (e.g., "1", "16/9", "4/3")28 * @default "1"29 */30 aspectRatio?: string;3132 /**33 * Corner radius of the card34 * @default "0.75rem"35 */36 borderRadius?: string;3738 /**39 * Animation duration in seconds40 * @default 441 */42 animationDuration?: number;4344 /**45 * Gradient colors array (up to 10 colors)46 */47 gradientColors?: string[];4849 /**50 * Border width for the glow effect51 * @default "1.25em"52 */53 borderWidth?: string;5455 /**56 * Blur amount for the glow effect57 * @default "0.75em"58 */59 blurAmount?: string;6061 /**62 * Inset distance (negative values push the border outside)63 * @default "-1em"64 */65 inset?: string;6667 /**68 * Preset color themes69 */70 colorPreset?: 'nature' | 'ocean' | 'sunset' | 'aurora' | 'custom';7172 /**73 * Whether animation is paused74 * @default false75 */76 paused?: boolean;77}7879// Preset gradient colors (10 colors each for smooth transitions)80const colorPresets: Record<string, string[]> = {81 nature: ['#669900', '#88bb22', '#99cc33', '#aaddaa', '#ccee66', '#006699', '#228888', '#3399cc', '#55aacc', '#669900'],82 ocean: ['#006699', '#1177aa', '#2288bb', '#3399cc', '#44aadd', '#55bbee', '#66ccff', '#44bbee', '#2299cc', '#006699'],83 sunset: ['#ff6600', '#ff7711', '#ff8822', '#ff9900', '#ffaa22', '#ffbb44', '#ffcc00', '#ff9933', '#ff7722', '#ff6600'],84 aurora: ['#00ff87', '#22ffaa', '#44ffcc', '#60efff', '#88ddff', '#bb99ff', '#dd77ee', '#ff68f0', '#ff55cc', '#00ff87'],85 custom: ['#669900', '#99cc33', '#ccee66', '#006699', '#3399cc', '#990066', '#cc3399', '#ff6600', '#ff9900', '#ffcc00'],86};8788/**89 * GlowBorderCard - A CSS-only animated glowing border card component90 *91 * Features a rotating conic gradient that creates a beautiful92 * aurora-like glow effect around the card edges.93 * Uses @property for smooth angle animation.94 */95// … truncated
