Skip to content

Commit

Permalink
Create custom.css
Browse files Browse the repository at this point in the history
  • Loading branch information
Linerly authored Jul 6, 2024
1 parent e40e909 commit c7d5374
Showing 1 changed file with 104 additions and 0 deletions.
104 changes: 104 additions & 0 deletions assets/custom.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,104 @@
:root {
--body-background-color: #001716;
--body-text-color: #f0ffff;
--card-background-color: #002b29;
--nav-background-color: #002b29;
--nav-border-bottom-color: #015450;
--nav-current-border-bottom-color: #1abc9c;
--card-border-color: #015450;
--down-border-left-color: #eb3b5a;
--down-background-color: #6b1020;
--degraded-border-left-color: #f7b731;
--up-border-left-color: #20bf6b;
--tag-color: #002b29;
--tag-up-background-color: #20bf6b;
--tag-down-background-color: #eb3b5a;
--tag-degraded-background-color: #f7b731;
--change-background-color: #f7b731;
--error-button-border-color: #1a46ad;
--error-button-background-color: #3867d6;
--error-button-color: #ffffff;
--submit-button-border-color: #1a46ad;
--submit-button-background-color: #3867d6;
--submit-button-color: #ffffff;
--graph-opacity: 1;
--graph-filter: none;
}

/* Fonts from the provided CSS */
@font-face {
font-display: swap;
font-family: 'Figtree';
font-style: normal;
font-weight: 400;
src: url('/fonts/figtree-v5-latin-regular.woff2') format('woff2');
}

@font-face {
font-display: swap;
font-family: 'Figtree';
font-style: italic;
font-weight: 400;
src: url('/fonts/figtree-v5-latin-italic.woff2') format('woff2');
}

@font-face {
font-display: swap;
font-family: 'Figtree';
font-style: normal;
font-weight: 700;
src: url('/fonts/figtree-v5-latin-700.woff2') format('woff2');
}

@font-face {
font-display: swap;
font-family: 'Figtree';
font-style: italic;
font-weight: 700;
src: url('/fonts/figtree-v5-latin-700italic.woff2') format('woff2');
}

@font-face {
font-display: swap;
font-family: 'JetBrains Mono';
font-style: normal;
font-weight: 400;
src: url('/fonts/jetbrains-mono-v18-latin-regular.woff2') format('woff2');
}

@font-face {
font-display: swap;
font-family: 'JetBrains Mono';
font-style: italic;
font-weight: 400;
src: url('/fonts/jetbrains-mono-v18-latin-italic.woff2') format('woff2');
}

@font-face {
font-display: swap;
font-family: 'JetBrains Mono';
font-style: normal;
font-weight: 700;
src: url('/fonts/jetbrains-mono-v18-latin-700.woff2') format('woff2');
}

@font-face {
font-display: swap;
font-family: 'JetBrains Mono';
font-style: italic;
font-weight: 700;
src: url('/fonts/jetbrains-mono-v18-latin-700italic.woff2') format('woff2');
}

@font-face {
font-display: swap;
font-family: 'Material Icons Round';
font-style: normal;
font-weight: 400;
src: url('/fonts/material-icons-round-v108-latin-regular.woff2') format('woff2');
}

/* Body styles */
body {
font-family: "Figtree", sans-serif;
}

0 comments on commit c7d5374

Please sign in to comment.