profile / src /index.css
n0w0f's picture
fix : add links to pubs
e73771b
raw
history blame contribute delete
887 Bytes
@tailwind base;
@tailwind components;
@tailwind utilities;
:root {
--primary: #811b06;
--secondary: #491802;
--accent: #b03e27;
--light: #f3e5f5;
--dark: #1a1a1a;
--text: #333333;
--background: #ffffff;
}
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;
background-color: var(--background);
color: var(--text);
}
code {
font-family: source-code-pro, Menlo, Monaco, Consolas, 'Courier New',
monospace;
}
.app.dark {
--primary: #bb86fc;
--secondary: #3700b3;
--accent: #03dac6;
--light: #2d2d2d;
--dark: #121212;
--text: #e0e0e0;
--background: #121212;
}
.app.dark body {
background-color: var(--dark);
color: var(--text);
}