-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.css
More file actions
52 lines (44 loc) · 1.15 KB
/
Copy pathindex.css
File metadata and controls
52 lines (44 loc) · 1.15 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
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&family=JetBrains+Mono:wght@400;500;600&display=swap');
@import "tailwindcss";
@theme {
--font-sans: "Poppins", ui-sans-serif, system-ui, sans-serif;
--font-mono: "JetBrains Mono", ui-monospace, SFMono-Regular, monospace;
--color-primary: #2563EB;
--color-primary-hover: #1D4ED8;
--color-secondary: #14B8A6;
--color-secondary-hover: #0F766E;
--color-accent: #F59E0B;
--color-accent-hover: #D97706;
--color-neutral-bg: #F8FAFC;
--color-neutral-text: #1F2937;
}
@layer base {
body {
font-family: var(--font-sans);
background-color: var(--color-neutral-bg);
color: var(--color-neutral-text);
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
overflow-x: hidden;
}
}
/* Custom Scrollbar */
::-webkit-scrollbar {
width: 8px;
height: 8px;
}
::-webkit-scrollbar-track {
background: #f1f5f9;
border-radius: 4px;
}
::-webkit-scrollbar-thumb {
background: #cbd5e1;
border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
background: #94a3b8;
}
/* Code layout styles */
.code-editor-textarea {
tab-size: 2;
}