Initial commit
This commit is contained in:
27
src/styles.css
Normal file
27
src/styles.css
Normal file
@@ -0,0 +1,27 @@
|
||||
:root {
|
||||
--bg: #1a1a1f;
|
||||
--bg-grid: #25252c;
|
||||
--card-bg: #2a2a32;
|
||||
--card-border: #3a3a45;
|
||||
--text: #e8e8ec;
|
||||
--accent: #6a8cff;
|
||||
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
|
||||
color-scheme: dark;
|
||||
}
|
||||
|
||||
* {
|
||||
box-sizing: border-box;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
html,
|
||||
body,
|
||||
#root {
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
overflow: hidden;
|
||||
background: var(--bg);
|
||||
color: var(--text);
|
||||
user-select: none;
|
||||
}
|
||||
Reference in New Issue
Block a user