-
Notifications
You must be signed in to change notification settings - Fork 55
/
Copy pathindex.css
26 lines (23 loc) · 962 Bytes
/
index.css
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
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inconsolata&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Merriweather:wght@300;400;700;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Mono:wght@400;500;600&display=swap');
/*
* Although this is duplicated but this would help us with consistent loader in case
* the theme is same as the system theme.
*/
:root {
/* Using the same name as in color palette to ensure this is applied when styles are loading */
--bg-tertiary: #f2f4f7;
--bg-devtron-loader: #e5f2ff;
--fill-devtron-loader: #3989d9;
@media (prefers-color-scheme: dark) {
--bg-tertiary: #15161F;
--bg-devtron-loader: #28364c;
--fill-devtron-loader: #6195d2;
}
}
body {
margin: 0;
background: var(--bg-tertiary);
}