File size: 1,439 Bytes
fe1519f
 
 
 
 
 
 
 
 
 
 
 
 
1258c53
 
 
 
 
 
 
 
 
 
 
 
 
fe1519f
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
/** @type {import('tailwindcss').Config} */
export default {
  content: [
    "./index.html",
    "./src/**/*.{js,ts,jsx,tsx}",
  ],
  theme: {
    extend: {
      fontFamily: {
        mono: ['"Space Mono"', 'monospace'],
        sans: ['"Space Mono"', 'monospace'], // Force mono everywhere for this look
      },
      colors: {
        // Map App.jsx classes to Retro Theme
        bg: {
          main: '#050505',
          panel: '#111111',
        },
        border: '#333333',
        text: {
          primary: '#e5e5e5', // Almost white
          secondary: '#888888', // Muted gray
        },
        accent: '#ffb000', // Amber
        
        // Original Retro Palette (kept for reference)
        retro: {
          bg: '#050505',      // Void Black
          surface: '#111111', // Dark Gray
          border: '#333333',  // Border Gray
          primary: '#ffb000', // Amber-500 (Classic Terminal)
          secondary: '#00ff41', // Matrix Green (Alternative accent)
          muted: '#666666',
        }
      },
      animation: {
        'blink': 'blink 1s step-end infinite',
        'scan': 'scan 8s linear infinite',
      },
      keyframes: {
        blink: {
          '0%, 100%': { opacity: '1' },
          '50%': { opacity: '0' },
        },
        scan: {
          '0%': { transform: 'translateY(-100%)' },
          '100%': { transform: 'translateY(100%)' },
        }
      }
    },
  },
  plugins: [],
}