diff --git a/chatgpt-to-claude/src/styles/global.css b/chatgpt-to-claude/src/styles/global.css index 96bc0b418..d1e0f0b94 100644 --- a/chatgpt-to-claude/src/styles/global.css +++ b/chatgpt-to-claude/src/styles/global.css @@ -98,6 +98,33 @@ pre { min-height: 100dvh; } +/* Gradient text utility */ +.text-gradient { + background: linear-gradient(135deg, var(--color-primary-light), var(--color-accent)); + -webkit-background-clip: text; + -webkit-text-fill-color: transparent; + background-clip: text; +} + +/* Subtle glow for cards on hover */ +.glow-hover { + transition: box-shadow 0.3s ease; +} +.glow-hover:hover { + box-shadow: 0 0 30px -5px color-mix(in srgb, var(--color-primary) 20%, transparent); +} + +/* Noise texture overlay */ +.noise::after { + content: ""; + position: absolute; + inset: 0; + opacity: 0.03; + background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E"); + pointer-events: none; + z-index: 1; +} + /* Reduced motion */ @media (prefers-reduced-motion: reduce) { *, diff --git a/memory/memories.db-wal b/memory/memories.db-wal index 65ae39cfb..8801047da 100644 Binary files a/memory/memories.db-wal and b/memory/memories.db-wal differ