-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy path_vars.scss
41 lines (34 loc) · 1010 Bytes
/
_vars.scss
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
// Main colors
$primary: #4764f4;
$secondary: #ec9ded;
$orange: #e39805; // Restricted use
// Background colors
$bg: #101419;
$bg_alt: #272f3b;
$bg_elevated: rgba(56, 56, 61);
$bg_input: rgba(#fff, 0.15);
// Text colors
$text_default: rgba(#fff, 0.95);
$text_muted_light: #d0d0d0;
$text_muted: #adadad;
// Stateful colors
$danger: #ef767a;
$warning: #e3b505;
$success: #49dcb1;
// Borders & radius
$radius: 4px;
$radius_lg: 50%;
$default_spacing: 16px;
$border: #464646;
// Z Indices
$z_sidebar_overlay: 3500;
$z_sidebar: 4000;
$z_overlay_on_sidebar: 4053;
.mixin-elevated {
// Generated via https://shadows.brumm.af/
box-shadow: 2.8px 2.8px 2.2px rgba(0, 0, 0, 0.02), 6.7px 6.7px 5.3px rgba(0, 0, 0, 0.028),
12.5px 12.5px 10px rgba(0, 0, 0, 0.035), 22.3px 22.3px 17.9px rgba(0, 0, 0, 0.042),
41.8px 41.8px 33.4px rgba(0, 0, 0, 0.05), 100px 100px 80px rgba(0, 0, 0, 0.07);
}
// Fonts
$font_family: 'Merriweather', serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol';