CSS · 1024 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 scrollbar for terminal */
29 .scrollbar-thin {
30 scrollbar-width: thin;
31 }
32
33 .scrollbar-thumb-gray-700::-webkit-scrollbar {
34 width: 8px;
35 }
36
37 .scrollbar-thumb-gray-700::-webkit-scrollbar-track {
38 background: #1f2937;
39 }
40
41 .scrollbar-thumb-gray-700::-webkit-scrollbar-thumb {
42 background-color: #374151;
43 border-radius: 4px;
44 }
45
46 .scrollbar-thumb-gray-700::-webkit-scrollbar-thumb:hover {
47 background-color: #4b5563;
48 }
49
50 /* Terminal cursor blink animation */
51 @keyframes blink {
52 0%, 50% { opacity: 1; }
53 51%, 100% { opacity: 0; }
54 }