-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
88 lines (80 loc) · 1.9 KB
/
Copy pathstyles.css
File metadata and controls
88 lines (80 loc) · 1.9 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
80
81
82
83
84
85
86
87
88
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');
@import 'tailwindcss';
@theme {
--font-sans: 'Inter', sans-serif;
--color-reccos-primary: #4f8a6b;
--color-reccos-hover: #43765c;
--color-reccos-light: #eaf4ee;
--color-reccos-success: #5bae6a;
--color-reccos-warning: #e9b949;
--color-reccos-error: #d66a6a;
--color-reccos-info: #5a8dee;
}
:root {
--bg-app: #f7f8fa;
--bg-surface: #ffffff;
--bg-surface-hover: #f3f4f6;
--border-color: #e5e7eb;
--text-main: #1f2937;
--text-muted: #6b7280;
}
html.dark {
--bg-app: #0f172a;
--bg-surface: #1e293b;
--bg-surface-hover: #334155;
--border-color: #334155;
--text-main: #f8fafc;
--text-muted: #94a3b8;
}
body {
font-family: 'Inter', sans-serif;
background-color: var(--bg-app);
color: var(--text-main);
margin: 0;
padding: 0;
-webkit-font-smoothing: antialiased;
}
/* Custom Scrollbars */
* {
scrollbar-width: thin;
scrollbar-color: rgba(156, 163, 175, 0.35) transparent;
}
::-webkit-scrollbar {
width: 5px;
height: 5px;
}
::-webkit-scrollbar-track {
background: transparent;
}
::-webkit-scrollbar-thumb {
background-color: rgba(156, 163, 175, 0.35);
border-radius: 9999px;
}
::-webkit-scrollbar-thumb:hover {
background-color: rgba(156, 163, 175, 0.6);
}
.no-scrollbar {
-ms-overflow-style: none;
scrollbar-width: none;
}
.no-scrollbar::-webkit-scrollbar {
display: none;
}
.custom-scrollbar {
scrollbar-width: thin;
scrollbar-color: rgba(156, 163, 175, 0.4) transparent;
}
.custom-scrollbar::-webkit-scrollbar {
width: 5px;
height: 5px;
}
.custom-scrollbar::-webkit-scrollbar-track {
background: transparent;
}
.custom-scrollbar::-webkit-scrollbar-thumb {
background-color: rgba(156, 163, 175, 0.4);
border-radius: 9999px;
}
.custom-scrollbar::-webkit-scrollbar-thumb:hover {
background-color: rgba(156, 163, 175, 0.7);
}