Spaces:
Running
Running
Update README.md
Browse filesattempt 3 to fix the light background issue, hugging face just overrides the color scheme regardless
README.md
CHANGED
@@ -14,13 +14,20 @@ pinned: true
|
|
14 |
<title>Zeus Labs Organization Card</title>
|
15 |
<link href="https://fonts.googleapis.com/css2?family=Quicksand:wght@400;500;600&display=swap" rel="stylesheet">
|
16 |
<style>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
17 |
body, html {
|
18 |
height: 100%;
|
19 |
margin: 0;
|
20 |
padding: 0;
|
21 |
font-family: 'Quicksand', sans-serif;
|
22 |
-
background: linear-gradient(135deg, #0a1128 0%, #1c2541 100%);
|
23 |
-
color: #e0e1dd;
|
24 |
font-size: 16px;
|
25 |
}
|
26 |
.container {
|
|
|
14 |
<title>Zeus Labs Organization Card</title>
|
15 |
<link href="https://fonts.googleapis.com/css2?family=Quicksand:wght@400;500;600&display=swap" rel="stylesheet">
|
16 |
<style>
|
17 |
+
/* Force dark mode */
|
18 |
+
:root {
|
19 |
+
color-scheme: dark;
|
20 |
+
}
|
21 |
+
/* Ensure our style take precedence */
|
22 |
+
body, html, .ant-layout, .ant-layout-content {
|
23 |
+
background-color: #0a1128 !important;
|
24 |
+
color: #e0e1dd !important;
|
25 |
+
}
|
26 |
body, html {
|
27 |
height: 100%;
|
28 |
margin: 0;
|
29 |
padding: 0;
|
30 |
font-family: 'Quicksand', sans-serif;
|
|
|
|
|
31 |
font-size: 16px;
|
32 |
}
|
33 |
.container {
|