-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathinput.css
More file actions
32 lines (29 loc) · 821 Bytes
/
input.css
File metadata and controls
32 lines (29 loc) · 821 Bytes
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
@import "tailwindcss";
@source "./src/**/*.rs";
@theme {
--color-dash: #008DE4;
--color-dash-hover: #0071B6;
--color-dash-dark: #00599a;
--color-surface: #323233;
--color-surface-alt: #2d2d2e;
--color-card: #39393b;
--color-hover: #4a4a4b;
--color-foreground: #c7c7c7;
--color-muted: #787878;
--color-disabled: #585858;
--color-edge: #4a4a4b;
--color-success: #5e8c41;
--color-warning: #c79304;
--color-error: #a84832;
--color-chainlock: #6b4fa0;
--font-heading: 'Montserrat', 'SF Pro Display', system-ui, sans-serif;
--font-body: 'Open Sans', 'SF Pro Text', system-ui, sans-serif;
}
@layer base {
body {
font-family: 'Open Sans', 'SF Pro Text', system-ui, sans-serif;
}
h1, h2, h3, h4, h5, h6 {
font-family: 'Montserrat', 'SF Pro Display', system-ui, sans-serif;
}
}