43 lines
972 B
CSS
43 lines
972 B
CSS
:root {
|
|
/* Main color scheme */
|
|
--color-primary: #f907c5;
|
|
--color-secondary: #AEA3F0ff;
|
|
--color-accent: #A4D1ADff;
|
|
|
|
/* Background colors */
|
|
--bg-primary: #000300ff;
|
|
--bg-secondary: #1C202Fff;
|
|
|
|
/* Text colors */
|
|
--text-primary: #E4F0FEff;
|
|
--text-secondary: #989898ff;
|
|
--text-accent: #AEA3F0ff;
|
|
|
|
/* Header colours */
|
|
--header-primary:#AEA3F0ff;
|
|
--header-secondary: #AEA3F0ff;
|
|
--header-tertiary: #A4D1ADff;
|
|
--header-other: #E4F0FEff;
|
|
|
|
/* Link colors */
|
|
--link-color: #2667deff;
|
|
--link-hover: #5B3D8Aff;
|
|
|
|
/* Border colors */
|
|
--border-primary: #f907c5;
|
|
--border-secondary: #0C072Cff;
|
|
--border-image: #000300ff;
|
|
|
|
/* Special purpose colors */
|
|
--code-color: #18A02Cff;
|
|
--header-bg: #AEA3F0ff;
|
|
--header-text: #0C072Cff;
|
|
|
|
/* Font families */
|
|
--font-headers: 'rumeur', sans-serif;
|
|
--font-body: verdana, helvetica, arial, sans-serif;
|
|
}
|
|
|
|
|
|
|
|
|