mirror of
https://github.com/solidtime-io/solidtime.git
synced 2026-06-06 20:37:32 +00:00
42 lines
1.1 KiB
CSS
42 lines
1.1 KiB
CSS
@tailwind base;
|
|
@tailwind components;
|
|
@tailwind utilities;
|
|
|
|
|
|
:root{
|
|
--theme-color-default-background: #040618;
|
|
--theme-color-icon-default: #42466C;
|
|
--theme-color-card-background: #13152B;
|
|
--theme-color-card-background-active: #1C1E34;
|
|
--theme-color-card-border: #242940;
|
|
--theme-color-card-border-active: #2A3461;
|
|
--theme-color-tab-background: var(--theme-color-card-background);
|
|
--theme-color-tab-background-active: var(--theme-color-card-background-active);
|
|
--theme-color-tab-border: var(--theme-color-card-border);
|
|
--theme-color-row-separator-background: var(--theme-color-card-border);
|
|
--theme-color-row-heading-background: var(--theme-color-card-background);
|
|
--theme-color-row-border: var(--theme-color-card-border);
|
|
--theme-color-row-heading-border: var(--theme-color-card-border);
|
|
|
|
}
|
|
|
|
*{
|
|
-webkit-font-smoothing: antialiased;
|
|
-moz-osx-font-smoothing: grayscale;
|
|
}
|
|
|
|
|
|
[x-cloak] {
|
|
display: none;
|
|
}
|
|
|
|
body{
|
|
background-color: var(--theme-color-default-background);
|
|
}
|
|
|
|
|
|
@font-face {
|
|
font-family: 'Outfit';
|
|
src: url('/fonts/Outfit-VariableFont_wght.ttf');
|
|
}
|