-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathinput.css
More file actions
55 lines (45 loc) · 1.16 KB
/
input.css
File metadata and controls
55 lines (45 loc) · 1.16 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
@import "tailwindcss";
@theme {
--color-gold-100: #f5edcf;
--color-gold-200: #ecd99f;
--color-gold-300: #e0c069;
--color-gold-400: #d6a741;
--color-gold-500: #c5a021;
--color-gold-600: #a98018;
--color-gold-950: #38240d;
--color-surface-base: #0c0c0c;
--color-surface-raised: #121212;
--color-surface-overlay: #161616;
--color-surface-input: #1a1a1a;
}
@layer base {
body {
@apply bg-surface-base text-slate-300 antialiased;
}
}
::-webkit-scrollbar {
width: 6px;
}
::-webkit-scrollbar-track {
background: transparent;
}
::-webkit-scrollbar-thumb {
background-color: theme(--color-surface-overlay);
border-radius: 10px;
}
.book-shadow {
box-shadow: 0 20px 50px -12px rgba(0, 0, 0, 0.5);
}
.modal-blur {
backdrop-filter: blur(8px);
background-color: color-mix(in srgb, theme(--color-surface-base) 70%, transparent);
}
.gold-text {
background: linear-gradient(to bottom right, theme(--color-gold-300), theme(--color-gold-500));
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}
.reader-text {
font-family: 'Lora', serif;
letter-spacing: -0.01em;
}