kurs-app/CSS/variables.css

33 lines
831 B
CSS

:root {
/* Colors*/
--brand-primary: #EB8202;
--brand-background: #201911;
--bg-muted: #5B5B5B;
--brand-white: #ffffff;
--fullblock: darkblue;
--input-placeholder: #998E82;
--error: #FF0000;
/*Fonts*/
--font-family-main: "Inter", sans-serif;
--font-family-headline: "Source Serif 4", serif;
/* Font-size*/
--font-size-title-h1: 62px;
--font-size-logo: 36px;
--font-size-text: 20px;
--font-size-smalltext: 18px;
/*Font-Weight*/
--font-weight-semibold: 600;
--h-md: 48px;
--border-primary: 1px solid #998E82;
/* Hover Variants */
--brand-primary-hover: #FF9E33;
--brand-background-hover: #2A231F;
--bg-muted-hover: #6A6A6A;
--fullblock-hover: #00008B;
--error-hover: #CC0000;
}