File size: 980 Bytes
b89c27d
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
/** @type {import('tailwindcss').Config} */
export default {
  content: ['./index.html', './src/**/*.{js,jsx}'],
  darkMode: 'class',
  theme: {
    extend: {
      colors: {
        // Warm Claude-inspired dark palette
        bg:       '#1f1d1a',
        surface:  '#2a2824',
        elevated: '#332f2a',
        border:   { DEFAULT: '#403b34', soft: '#332f2a' },
        ink:      '#f3f0e8',
        muted:    '#b5ada0',
        subtle:   '#857d72',
        accent:   { DEFAULT: '#e28763', dark: '#c96442', soft: '#4a2f22' },
        good:     '#7ab68c',
        warn:     '#e4b264',
        bad:      '#d47d6a',
      },
      fontFamily: {
        sans:   ['Inter', 'system-ui', 'sans-serif'],
        serif:  ['"Source Serif 4"', 'Georgia', 'serif'],
        mono:   ['"JetBrains Mono"', 'ui-monospace', 'monospace'],
      },
      boxShadow: {
        card: '0 1px 0 rgba(0,0,0,0.2)',
        glow: '0 0 0 3px rgba(226,135,99,0.18)',
      },
    },
  },
  plugins: [],
}