Reduced contrast in light theme for softer, more comfortable appearance: Background tones (darker, gentler): - waveform-bg: 97% (was 99% - less bright) - card: 96% (was 98% - softer) - background: 93% (was 96% - more muted) - muted: 90% (was 94% - darker) - secondary/accent: 88% (was 92% - more visible) - border: 85% (was 88% - stronger definition) - input: 88% (was 92% - better contrast) Foreground tones (lighter, softer): - foreground: 28% (was 20% - less harsh) - card-foreground: 28% (was 20% - softer) - secondary-foreground: 32% (was 25% - lighter) - muted-foreground: 48% (was 45% - easier to read) Color adjustments: - Reduced color intensity from 0.15 to 0.14 - Softer primary: oklch(58% 0.14 240) - All colors slightly desaturated for gentler feel Benefits: - Reduced contrast reduces eye strain - Softer, warmer appearance - More comfortable for extended use - Better balance between light and dark themes - Modern low-contrast aesthetic - Similar to Figma, Linear, or Notion's light modes Both themes now have beautifully balanced, low-contrast palettes that are easy on the eyes and professional. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
358 lines
8.4 KiB
CSS
358 lines
8.4 KiB
CSS
@import "tailwindcss";
|
|
|
|
/* Source directives - scan components for Tailwind classes */
|
|
@source "../components/editor/*.{js,ts,jsx,tsx}";
|
|
@source "../components/effects/*.{js,ts,jsx,tsx}";
|
|
@source "../components/tracks/*.{js,ts,jsx,tsx}";
|
|
@source "../components/automation/*.{js,ts,jsx,tsx}";
|
|
@source "../components/analysis/*.{js,ts,jsx,tsx}";
|
|
@source "../components/recording/*.{js,ts,jsx,tsx}";
|
|
@source "../components/export/*.{js,ts,jsx,tsx}";
|
|
@source "../components/project/*.{js,ts,jsx,tsx}";
|
|
@source "../components/layout/*.{js,ts,jsx,tsx}";
|
|
@source "../components/ui/*.{js,ts,jsx,tsx}";
|
|
@source "*.{js,ts,jsx,tsx}";
|
|
|
|
/* Custom dark mode variant */
|
|
@custom-variant dark (&:is(.dark *));
|
|
|
|
/* CSS Variables for theming */
|
|
@layer base {
|
|
:root {
|
|
/* Light mode colors using OKLCH - soft, gentle gray palette */
|
|
--background: oklch(93% 0.005 285.8);
|
|
--foreground: oklch(28% 0.012 285.8);
|
|
|
|
--card: oklch(96% 0.003 285.8);
|
|
--card-foreground: oklch(28% 0.012 285.8);
|
|
|
|
--popover: oklch(96% 0.003 285.8);
|
|
--popover-foreground: oklch(28% 0.012 285.8);
|
|
|
|
--primary: oklch(58% 0.14 240);
|
|
--primary-foreground: oklch(96% 0.003 285.8);
|
|
|
|
--secondary: oklch(88% 0.005 285.8);
|
|
--secondary-foreground: oklch(32% 0.012 285.8);
|
|
|
|
--muted: oklch(90% 0.005 285.8);
|
|
--muted-foreground: oklch(48% 0.008 285.9);
|
|
|
|
--accent: oklch(88% 0.005 285.8);
|
|
--accent-foreground: oklch(32% 0.012 285.8);
|
|
|
|
--destructive: oklch(58% 0.16 29.2);
|
|
--destructive-foreground: oklch(96% 0.003 285.8);
|
|
|
|
--border: oklch(85% 0.005 285.8);
|
|
--input: oklch(88% 0.005 285.8);
|
|
--ring: oklch(58% 0.14 240);
|
|
|
|
--radius: 0.5rem;
|
|
|
|
--success: oklch(56% 0.14 145);
|
|
--success-foreground: oklch(96% 0.003 285.8);
|
|
|
|
--warning: oklch(62% 0.14 85);
|
|
--warning-foreground: oklch(28% 0.012 285.8);
|
|
|
|
--info: oklch(62% 0.14 240);
|
|
--info-foreground: oklch(96% 0.003 285.8);
|
|
|
|
/* Audio-specific colors */
|
|
--waveform: oklch(58% 0.14 240);
|
|
--waveform-progress: oklch(56% 0.14 145);
|
|
--waveform-selection: oklch(62% 0.14 240);
|
|
--waveform-bg: oklch(97% 0.002 285.8);
|
|
}
|
|
|
|
.dark {
|
|
/* Dark mode colors using OKLCH - lighter, softer palette */
|
|
--background: oklch(18% 0.008 285.8);
|
|
--foreground: oklch(78% 0.005 285.8);
|
|
|
|
--card: oklch(22% 0.01 285.8);
|
|
--card-foreground: oklch(78% 0.005 285.8);
|
|
|
|
--popover: oklch(22% 0.01 285.8);
|
|
--popover-foreground: oklch(78% 0.005 285.8);
|
|
|
|
--primary: oklch(68% 0.14 240);
|
|
--primary-foreground: oklch(22% 0.01 285.8);
|
|
|
|
--secondary: oklch(28% 0.012 285.8);
|
|
--secondary-foreground: oklch(75% 0.005 285.8);
|
|
|
|
--muted: oklch(25% 0.01 285.8);
|
|
--muted-foreground: oklch(58% 0.008 285.9);
|
|
|
|
--accent: oklch(30% 0.012 285.8);
|
|
--accent-foreground: oklch(75% 0.005 285.8);
|
|
|
|
--destructive: oklch(58% 0.16 29.2);
|
|
--destructive-foreground: oklch(78% 0.005 285.8);
|
|
|
|
--border: oklch(32% 0.012 285.8);
|
|
--input: oklch(28% 0.012 285.8);
|
|
--ring: oklch(68% 0.14 240);
|
|
|
|
--success: oklch(62% 0.14 145);
|
|
--success-foreground: oklch(22% 0.01 285.8);
|
|
|
|
--warning: oklch(68% 0.14 85);
|
|
--warning-foreground: oklch(22% 0.01 285.8);
|
|
|
|
--info: oklch(66% 0.14 240);
|
|
--info-foreground: oklch(22% 0.01 285.8);
|
|
|
|
/* Audio-specific colors */
|
|
--waveform: oklch(68% 0.14 240);
|
|
--waveform-progress: oklch(62% 0.14 145);
|
|
--waveform-selection: oklch(68% 0.14 240);
|
|
--waveform-bg: oklch(16% 0.008 285.8);
|
|
}
|
|
}
|
|
|
|
/* Theme inline - map CSS variables to Tailwind colors */
|
|
@theme inline {
|
|
--color-background: var(--background);
|
|
--color-foreground: var(--foreground);
|
|
--color-card: var(--card);
|
|
--color-card-foreground: var(--card-foreground);
|
|
--color-popover: var(--popover);
|
|
--color-popover-foreground: var(--popover-foreground);
|
|
--color-primary: var(--primary);
|
|
--color-primary-foreground: var(--primary-foreground);
|
|
--color-secondary: var(--secondary);
|
|
--color-secondary-foreground: var(--secondary-foreground);
|
|
--color-muted: var(--muted);
|
|
--color-muted-foreground: var(--muted-foreground);
|
|
--color-accent: var(--accent);
|
|
--color-accent-foreground: var(--accent-foreground);
|
|
--color-destructive: var(--destructive);
|
|
--color-destructive-foreground: var(--destructive-foreground);
|
|
--color-border: var(--border);
|
|
--color-input: var(--input);
|
|
--color-ring: var(--ring);
|
|
--color-success: var(--success);
|
|
--color-success-foreground: var(--success-foreground);
|
|
--color-warning: var(--warning);
|
|
--color-warning-foreground: var(--warning-foreground);
|
|
--color-info: var(--info);
|
|
--color-info-foreground: var(--info-foreground);
|
|
--color-waveform: var(--waveform);
|
|
--color-waveform-progress: var(--waveform-progress);
|
|
--color-waveform-selection: var(--waveform-selection);
|
|
--color-waveform-bg: var(--waveform-bg);
|
|
|
|
--radius: var(--radius);
|
|
}
|
|
|
|
/* Global styles */
|
|
@layer base {
|
|
* {
|
|
@apply border-border;
|
|
}
|
|
|
|
body {
|
|
@apply bg-background text-foreground;
|
|
font-feature-settings: "rlig" 1, "calt" 1;
|
|
}
|
|
|
|
/* Apply custom scrollbar globally */
|
|
* {
|
|
scrollbar-width: thin;
|
|
}
|
|
|
|
*::-webkit-scrollbar {
|
|
width: 10px;
|
|
height: 10px;
|
|
}
|
|
|
|
*::-webkit-scrollbar-track {
|
|
background: var(--muted);
|
|
border-radius: 5px;
|
|
}
|
|
|
|
*::-webkit-scrollbar-thumb {
|
|
background: color-mix(in oklch, var(--muted-foreground) 30%, transparent);
|
|
border-radius: 5px;
|
|
border: 2px solid var(--muted);
|
|
transition: background 0.2s ease;
|
|
}
|
|
|
|
*::-webkit-scrollbar-thumb:hover {
|
|
background: color-mix(in oklch, var(--muted-foreground) 50%, transparent);
|
|
}
|
|
|
|
*::-webkit-scrollbar-thumb:active {
|
|
background: color-mix(in oklch, var(--muted-foreground) 70%, transparent);
|
|
}
|
|
|
|
/* Scrollbar corners */
|
|
*::-webkit-scrollbar-corner {
|
|
background: var(--muted);
|
|
}
|
|
}
|
|
|
|
/* Custom animations */
|
|
@layer utilities {
|
|
@keyframes fadeIn {
|
|
from {
|
|
opacity: 0;
|
|
}
|
|
to {
|
|
opacity: 1;
|
|
}
|
|
}
|
|
|
|
@keyframes slideInFromRight {
|
|
from {
|
|
transform: translateX(100%);
|
|
opacity: 0;
|
|
}
|
|
to {
|
|
transform: translateX(0);
|
|
opacity: 1;
|
|
}
|
|
}
|
|
|
|
@keyframes slideDown {
|
|
from {
|
|
transform: translateY(-10px);
|
|
opacity: 0;
|
|
}
|
|
to {
|
|
transform: translateY(0);
|
|
opacity: 1;
|
|
}
|
|
}
|
|
|
|
@keyframes slideUp {
|
|
from {
|
|
transform: translateY(10px);
|
|
opacity: 0;
|
|
}
|
|
to {
|
|
transform: translateY(0);
|
|
opacity: 1;
|
|
}
|
|
}
|
|
|
|
@keyframes scaleIn {
|
|
from {
|
|
transform: scale(0.95);
|
|
opacity: 0;
|
|
}
|
|
to {
|
|
transform: scale(1);
|
|
opacity: 1;
|
|
}
|
|
}
|
|
|
|
@keyframes pulseSubtle {
|
|
0%, 100% {
|
|
opacity: 1;
|
|
}
|
|
50% {
|
|
opacity: 0.8;
|
|
}
|
|
}
|
|
|
|
@keyframes shimmer {
|
|
0% {
|
|
background-position: -1000px 0;
|
|
}
|
|
100% {
|
|
background-position: 1000px 0;
|
|
}
|
|
}
|
|
|
|
@keyframes progress {
|
|
0% {
|
|
transform: translateX(-100%);
|
|
}
|
|
100% {
|
|
transform: translateX(100%);
|
|
}
|
|
}
|
|
|
|
@keyframes spin {
|
|
from {
|
|
transform: rotate(0deg);
|
|
}
|
|
to {
|
|
transform: rotate(360deg);
|
|
}
|
|
}
|
|
|
|
.animate-fadeIn {
|
|
animation: fadeIn 0.2s ease-out;
|
|
}
|
|
|
|
.animate-slideInFromRight {
|
|
animation: slideInFromRight 0.3s ease-out;
|
|
}
|
|
|
|
.animate-slideDown {
|
|
animation: slideDown 0.3s ease-out;
|
|
}
|
|
|
|
.animate-slideUp {
|
|
animation: slideUp 0.3s ease-out;
|
|
}
|
|
|
|
.animate-scaleIn {
|
|
animation: scaleIn 0.2s ease-out;
|
|
}
|
|
|
|
.animate-pulseSubtle {
|
|
animation: pulseSubtle 2s ease-in-out infinite;
|
|
}
|
|
|
|
.animate-shimmer {
|
|
animation: shimmer 2s linear infinite;
|
|
}
|
|
|
|
.animate-progress {
|
|
animation: progress 1.5s ease-in-out infinite;
|
|
}
|
|
|
|
.animate-spin {
|
|
animation: spin 1s linear infinite;
|
|
}
|
|
}
|
|
|
|
/* Custom scrollbar */
|
|
@layer utilities {
|
|
.custom-scrollbar {
|
|
scrollbar-width: thin;
|
|
scrollbar-color: color-mix(in oklch, var(--muted-foreground) 30%, transparent) var(--muted);
|
|
}
|
|
|
|
.custom-scrollbar::-webkit-scrollbar {
|
|
width: 8px;
|
|
height: 8px;
|
|
}
|
|
|
|
.custom-scrollbar::-webkit-scrollbar-track {
|
|
background: var(--muted);
|
|
border-radius: 4px;
|
|
}
|
|
|
|
.custom-scrollbar::-webkit-scrollbar-thumb {
|
|
background: color-mix(in oklch, var(--muted-foreground) 30%, transparent);
|
|
border-radius: 4px;
|
|
border: 2px solid var(--muted);
|
|
transition: background 0.2s ease;
|
|
}
|
|
|
|
.custom-scrollbar::-webkit-scrollbar-thumb:hover {
|
|
background: color-mix(in oklch, var(--muted-foreground) 50%, transparent);
|
|
}
|
|
|
|
.custom-scrollbar::-webkit-scrollbar-thumb:active {
|
|
background: color-mix(in oklch, var(--muted-foreground) 70%, transparent);
|
|
}
|
|
}
|