-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.css
More file actions
79 lines (70 loc) · 2.03 KB
/
index.css
File metadata and controls
79 lines (70 loc) · 2.03 KB
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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
@tailwind base;
@tailwind components;
@tailwind utilities;
/* ============================================
DESIGN SYSTEM - Consistent Dark Theme
============================================ */
:root {
/* Background colors (darkest to lightest) */
--bg-base: #0b0f19; /* Page background */
--bg-card: #111318; /* Card/Panel background */
--bg-elevated: #161a24; /* Elevated surfaces */
--bg-input: #0d1117; /* Input fields */
--bg-hover: #1a1f2e; /* Hover states */
/* Accent colors */
--accent-primary: #CA8A04; /* Gold/Yellow - primary accent */
--accent-hover: #EAB308; /* Lighter gold for hover */
--accent-muted: #A16207; /* Darker gold for pressed */
/* Text colors */
--text-primary: #e5e7eb; /* Primary text */
--text-secondary: #9ca3af; /* Secondary text */
--text-muted: #6b7280; /* Muted/disabled text */
/* Border colors */
--border-default: #1f2937; /* Default borders */
--border-hover: #374151; /* Hover borders */
--border-accent: rgba(230, 200, 136, 0.3); /* Accent borders */
/* Status colors */
--status-success: #10b981;
--status-warning: #f59e0b;
--status-error: #ef4444;
}
body {
background-color: var(--bg-base);
color: var(--text-primary);
}
/* Custom scrollbar for code blocks */
::-webkit-scrollbar {
width: 8px;
height: 8px;
}
::-webkit-scrollbar-track {
background: #1f2937;
}
::-webkit-scrollbar-thumb {
background: #4b5563;
border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
background: #6b7280;
}
/* Custom scrollbar for flashcard content */
.custom-scrollbar::-webkit-scrollbar {
width: 4px;
}
.custom-scrollbar::-webkit-scrollbar-track {
background: transparent;
}
.custom-scrollbar::-webkit-scrollbar-thumb {
background: rgba(255, 255, 255, 0.1);
border-radius: 2px;
}
.custom-scrollbar::-webkit-scrollbar-thumb:hover {
background: rgba(255, 255, 255, 0.2);
}
/* Line clamp utility */
.line-clamp-4 {
display: -webkit-box;
-webkit-line-clamp: 4;
-webkit-box-orient: vertical;
overflow: hidden;
}