Files
ivanch.me/css/variables.css
2025-08-18 16:47:16 -03:00

26 lines
754 B
CSS

:root {
--primary-color: #4fc3f7;
--primary-color-light: #81d4fa;
--secondary-color: #667eea;
--tertiary-color: #764ba2;
--primary-gradient: linear-gradient(120deg, rgba(40, 20, 60, 0.6), rgba(20, 20, 60, 0.4));
--background-color: #000000;
--glass-background: rgba(20, 20, 20, 0.125);
--glass-border: rgba(255, 255, 255, 0.18);
--glass-shadow: rgba(31, 38, 135, 0.37);
--text-color: #ffffff;
--text-color-light: rgba(255, 255, 255, 0.8);
--text-color-dark: rgba(255, 255, 255, 0.45);
--font-family: "Lexend", sans-serif;
--border-radius: 16px;
--border-radius-large: 24px;
--box-shadow: 0 8px 32px 0 var(--glass-shadow);
--inset-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2);
}