58 lines
804 B
CSS
58 lines
804 B
CSS
:root {
|
||
/ Main color scheme /
|
||
–color-primary: #e5562b;
|
||
–color-secondary: #f9931e;
|
||
–color-accent: #c3a61e;
|
||
|
||
/* Background colors */
|
||
--bg-primary: #c31e1e;
|
||
--bg-secondary: #a775d2;
|
||
|
||
/* Text colors */
|
||
--text-primary: #f9931e;
|
||
--text-secondary: #c3a61e;
|
||
--text-accent: #a775d2;
|
||
|
||
/* Header colours */
|
||
--header-primary:#c3a61e;
|
||
--header-secondary: #a775d2;
|
||
--header-tertiary: #f9931e;
|
||
--header-other: #e5562b;
|
||
|
||
/* Link colors */
|
||
--link-color: #a775d2;
|
||
--link-hover: #e5562b;
|
||
|
||
/* Border colors */
|
||
--border-primary: #a775d2;
|
||
--border-secondary: #e5562b;
|
||
--border-image: #c3a61e;
|
||
|
||
/* Special purpose colors */
|
||
--code-color: #a775d2;
|
||
--header-bg: #c3a61e;
|
||
--header-text: #a775d2;
|
||
|
||
/* Font families */
|
||
--font-headers: snell roundhand, cursive;
|
||
--font-body: snell roundhand, cursive;
|
||
}
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|