CSS · 1154 bytes Raw Blame History
1 @import "tailwindcss";
2
3 :root {
4 --background: #ffffff;
5 --foreground: #171717;
6 }
7
8 @theme inline {
9 --color-background: var(--background);
10 --color-foreground: var(--foreground);
11 --font-sans: var(--font-geist-sans);
12 --font-mono: var(--font-geist-mono);
13 }
14
15 @media (prefers-color-scheme: dark) {
16 :root {
17 --background: #0a0a0a;
18 --foreground: #ededed;
19 }
20 }
21
22 body {
23 background: var(--background);
24 color: var(--foreground);
25 font-family: Arial, Helvetica, sans-serif;
26 }
27
28 /* Custom terminal font class */
29 .font-terminal {
30 font-family: var(--font-terminal, 'Space Mono', 'Courier New', monospace);
31 }
32
33 /* Custom scrollbar for terminal */
34 .scrollbar-thin {
35 scrollbar-width: thin;
36 }
37
38 .scrollbar-thumb-gray-700::-webkit-scrollbar {
39 width: 8px;
40 }
41
42 .scrollbar-thumb-gray-700::-webkit-scrollbar-track {
43 background: #1f2937;
44 }
45
46 .scrollbar-thumb-gray-700::-webkit-scrollbar-thumb {
47 background-color: #374151;
48 border-radius: 4px;
49 }
50
51 .scrollbar-thumb-gray-700::-webkit-scrollbar-thumb:hover {
52 background-color: #4b5563;
53 }
54
55 /* Terminal cursor blink animation */
56 @keyframes blink {
57 0%, 50% { opacity: 1; }
58 51%, 100% { opacity: 0; }
59 }