We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8f4220f commit 8b85b98Copy full SHA for 8b85b98
index.css
@@ -3,18 +3,20 @@
3
* the theme is same as the system theme.
4
*/
5
:root {
6
- --bg-loading-screen: #f2f4f7;
+ /* Using the same name as in color palette to ensure this is applied when styles are loading */
7
+ --bg-tertiary: #f2f4f7;
8
--bg-devtron-loader: #e5f2ff;
9
--fill-devtron-loader: #0066cc;
10
11
12
@media (prefers-color-scheme: dark) {
- --bg-loading-screen: #0d0f1c;
13
+ --bg-tertiary: #0d0f1c;
14
--bg-devtron-loader: #172433;
15
--fill-devtron-loader: #74B5FF;
16
}
17
18
19
body {
- background: var(--bg-loading-screen);
20
+ margin: 0;
21
+ background: var(--bg-tertiary);
22
0 commit comments