meow
This commit is contained in:
parent
78f540d4c3
commit
a1f51b2539
12 changed files with 898 additions and 826 deletions
76
assets/theme.css
Normal file
76
assets/theme.css
Normal file
|
|
@ -0,0 +1,76 @@
|
|||
/**
|
||||
* Copyright (c) 2025 favewa
|
||||
* SPDX-License-Identifier: AGPL-3.0-or-later
|
||||
*/
|
||||
|
||||
:root {
|
||||
--theme-background: #121317;
|
||||
--theme-background-alt: #090a0d;
|
||||
--theme-foreground: #cac7ee;
|
||||
--theme-foreground-alt: #a4a3bd;
|
||||
--theme-foreground-bruh: #7d7d86;
|
||||
--theme-separator: #232833;
|
||||
|
||||
--space-0: 0.16rem;
|
||||
--space-1: 0.25rem;
|
||||
--space-2: 0.5rem;
|
||||
--space-3: 0.75rem;
|
||||
--space-4: 1rem;
|
||||
--space-5: 1.25rem;
|
||||
--space-6: 1.5rem;
|
||||
--space-7: 2rem;
|
||||
--space-8: 2.5rem;
|
||||
--space-9: 3rem;
|
||||
--space-10: 4rem;
|
||||
|
||||
--spacing-xs: var(--space-1);
|
||||
--spacing-sm: var(--space-2);
|
||||
--spacing-md: var(--space-4);
|
||||
--spacing-lg: var(--space-6);
|
||||
--spacing-xl: var(--space-7);
|
||||
--spacing-2xl: var(--space-9);
|
||||
--spacing-3xl: var(--space-10);
|
||||
|
||||
--section-margin: var(--space-7);
|
||||
--card-padding: var(--space-4);
|
||||
--button-padding-x: var(--space-2);
|
||||
--button-padding-y: var(--space-1);
|
||||
--input-padding: var(--space-3);
|
||||
|
||||
--radius-sm: 2px;
|
||||
--radius-md: 3px;
|
||||
--radius-lg: 10px;
|
||||
--radius-circle: 1000px;
|
||||
--radius-music: 15%;
|
||||
|
||||
--transition-fast: 0.2s ease-in-out;
|
||||
--transition-smooth: 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
|
||||
|
||||
--font-size-xs: 11px;
|
||||
--font-size-sm: 12px;
|
||||
--font-size-md: 0.875rem;
|
||||
--font-size-base: 17px;
|
||||
--font-size-lg: 1.1rem;
|
||||
--font-size-xl: 1.5rem;
|
||||
--font-size-2xl: 2.4rem;
|
||||
|
||||
--avatar-size: 160px;
|
||||
|
||||
--max-width: 55em;
|
||||
--section-spacing: 2em;
|
||||
|
||||
--z-background: -1;
|
||||
--z-base: 0;
|
||||
--z-elevated: 10;
|
||||
}
|
||||
|
||||
@media (prefers-color-scheme: light) {
|
||||
:root {
|
||||
--theme-background: #f5f5f7;
|
||||
--theme-background-alt: #ffffff;
|
||||
--theme-foreground: #1d1d1f;
|
||||
--theme-foreground-alt: #515154;
|
||||
--theme-foreground-bruh: #86868b;
|
||||
--theme-separator: #d2d2d7;
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue