Files
hackathon/front_end/src/index.css
2026-01-06 16:05:41 +01:00

48 lines
930 B
CSS

[data-theme='dark']{
--tint0: #000000; /* 0% */
--tint1: #0b0c0e; /* 5% */
--tint2: #16181d; /* 10% */
--tint3: #21252b; /* 15% */
--tint4: #2c313a; /* 20% */
--text: #FFFFFF;
--text2:#000000;
--accent1: #44c1ee;
--accent2: #0b235f;
--disable: #030918;
}
[data-theme='light']{
--tint0: #FFFFFF; /* 100% */
--tint1: #f4f1f1; /* 95% */
--tint2: #e8e4e3; /* 90% */
--tint3: #ddd6d5; /* 85% */
--tint4: #d2c8c6; /* 80% */
--text: #000000;
--text2:#FFFFFF;
--accent1: #44c1ee;
--accent2: #113388;
--disable: #061231;
}
body {
margin: 0;
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen',
'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue',
sans-serif;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
code {
font-family: source-code-pro, Menlo, Monaco, Consolas, 'Courier New',
monospace;
}