forked from qognet/docs
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
41 lines (33 loc) · 927 Bytes
/
style.css
File metadata and controls
41 lines (33 loc) · 927 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
33
34
35
36
37
38
39
40
41
/* Import Font */
@import url('https://fonts.googleapis.com/css2?family=Electrolize&display=swap');
:root {
/* Qognet Brand Colors */
--vp-c-brand-1: #3A1AFF;
--vp-c-brand-2: #2E14CC;
--vp-c-brand-3: #2b15aa;
/* Backgrounds - Force Dark Mode look even in light mode preference */
--vp-c-bg: #010304;
--vp-c-bg-alt: #0F1013;
--vp-c-bg-soft: #1A1B1F;
/* Text */
--vp-c-text-1: #ffffff;
--vp-c-text-2: #87898E;
/* Borders */
--vp-c-divider: #212328;
--vp-c-gutter: #212328;
/* Fonts */
--vp-font-family-base: 'Electrolize', sans-serif;
}
/* Force dark scheme styles */
.vp-doc h1, .vp-doc h2, .vp-doc h3, .vp-doc h4, .vp-doc h5, .vp-doc h6 {
font-weight: 400;
}
/* Custom Home Hero Button */
.VPButton.brand {
background-color: var(--vp-c-brand-1);
border-radius: 0; /* Qognet sharp edges */
color: white;
}
.VPButton.brand:hover {
background-color: var(--vp-c-brand-2);
}