mirror of
https://github.com/solidtime-io/solidtime.git
synced 2026-05-07 20:32:26 +00:00
108 lines
3.2 KiB
CSS
108 lines
3.2 KiB
CSS
@tailwind base;
|
|
@tailwind components;
|
|
@tailwind utilities;
|
|
|
|
:root {
|
|
--color-bg-primary: #0f1011;
|
|
--color-bg-secondary: #17181a;
|
|
--color-bg-tertiary: #2A2C32;
|
|
--color-bg-quaternary: #141518;
|
|
--color-bg-background: #080808;
|
|
--color-text-primary: #ffffff;
|
|
--color-text-secondary: #e3e4e6;
|
|
--color-text-tertiary: #969799;
|
|
--color-text-quaternary: #595a5c;
|
|
--color-border-primary: #191b1f;
|
|
--color-border-secondary: #23252a;
|
|
--color-border-tertiary: #2c2e33;
|
|
--color-border-quaternary: #393B42;
|
|
--color-input-border-active: rgba(255,255,255,0.3);
|
|
|
|
--color-accent-primary: 14, 165, 233; /* sky-500 */
|
|
--color-accent-secondary: 56, 189, 248;
|
|
--color-accent-tertiary: 125, 211, 252;
|
|
--color-accent-quaternary: 186, 230, 253;
|
|
|
|
--theme-color-default-background: var(--color-bg-primary);
|
|
--theme-color-icon-default: var(--color-text-tertiary);
|
|
--theme-color-icon-active: rgb(var(--color-text-tertiary));
|
|
--theme-color-card-background: var(--color-bg-secondary);
|
|
--theme-color-card-background-active: var(--color-bg-tertiary);
|
|
--theme-color-card-background-separator: var(--color-border-tertiary);
|
|
--theme-color-card-border: var(--color-border-secondary);
|
|
--theme-color-card-border-active: var(--color-border-tertiary);
|
|
--theme-color-default-background-separator: var(--color-border-primary);
|
|
--theme-color-primary-text: var(--color-text-primary);
|
|
--theme-color-muted-text: var(--color-text-secondary);
|
|
--theme-color-menu-active: var(--color-bg-secondary);
|
|
--theme-color-input-border: var(--color-border-quaternary);
|
|
--theme-color-input-background: var(--color-bg-secondary);
|
|
--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-default-background-separator);
|
|
--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;
|
|
}
|
|
|
|
/* width */
|
|
::-webkit-scrollbar {
|
|
width: 5px;
|
|
}
|
|
|
|
/* Track */
|
|
::-webkit-scrollbar-track, ::-webkit-scrollbar-corner {
|
|
background: transparent;
|
|
}
|
|
|
|
/* Handle */
|
|
::-webkit-scrollbar-thumb {
|
|
background: #888;
|
|
border-radius: 2px;
|
|
}
|
|
|
|
/* Handle on hover */
|
|
::-webkit-scrollbar-thumb:hover {
|
|
background: #555;
|
|
}
|
|
|
|
[x-cloak] {
|
|
display: none;
|
|
}
|
|
body {
|
|
background-color: var(--theme-color-default-background);
|
|
}
|
|
|
|
|
|
@font-face {
|
|
font-family: 'Outfit';
|
|
src: url('/fonts/Outfit-Regular.ttf');
|
|
font-weight: 400;
|
|
}
|
|
@font-face {
|
|
font-family: 'Outfit';
|
|
src: url('/fonts/Outfit-Medium.ttf');
|
|
font-weight: 500;
|
|
}
|
|
@font-face {
|
|
font-family: 'Outfit';
|
|
src: url('/fonts/Outfit-SemiBold.ttf');
|
|
font-weight: 600;
|
|
}
|
|
@font-face {
|
|
font-family: 'Outfit';
|
|
src: url('/fonts/Outfit-Bold.ttf');
|
|
font-weight: 700;
|
|
}
|
|
@font-face {
|
|
font-family: 'Outfit';
|
|
src: url('/fonts/Outfit-ExtraBold.ttf');
|
|
font-weight: 800;
|
|
}
|