/* google fonts go here! 

e.g. @import url('https://fonts.googleapis.com/css2?family=Lumanosimo&display=swap'); */

/* by default, we use the dante font because its cool */
*@font-face {
    font-family: 'Dante MT Std';
    src: url('/fonts/DanteMTStd-Regular.eot?#iefix') format('embedded-opentype'),
        url('/fonts/DanteMTStd-Regular.woff2') format('woff2'),
        url('/fonts/DanteMTStd-Regular.woff') format('woff'),
        url('/fonts/DanteMTStd-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

/* alternatively, you can use the Georgia font (thanks widj)
@font-face {
    font-family: 'Georgia' !important;
    src: url('/fonts/Georgia.eot');
    src: url('/fonts/Georgia.eot?#iefix') format('embedded-opentype'),
        url('/fonts/Georgia.woff2') format('woff2'),
        url('/fonts/Georgia.woff') format('woff'),
        url('/fonts/Georgia.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}*/

/* base css colours */

:root[data-theme="light"] {
    --background: #FDFDFD;
    --lightbackground: #EAE8E8;
    --lighterbackground: #9E9E9E;
    --text: #131330;
    --lighttext: #aeadad;
    --strikethrough: #8e8888; 
    --textlink: #2F459C;
    --textlinkvisited: #2F459C;
    --secondary: #2F459C;
    --tertiary: #1f2e6b;
    --quaternary: #1e5cb4;
    --mark: #394679;
    --lightblue: #1f86c2;
    --darkerlightblue: #16567b;
    --lightestblue: #82a0a0;
    --green: #389f5f;
    --yellow: #c9ba10;
    --red: #cb4040;
    --orange: #cb8340;
    --purple: #b873c9;
    --codebase: #CDD6DD;
    --red: #BA1717;
    --bold: #BA1717;
    --italics: #F5D000;
    --peach: #655a4c;
    --root: var(--secondary);
    --flnode: var(--red);
    --blnode: var(--yellow);
}

:root[data-theme="dark"] {
    --background: #151515;
    --lightbackground: #2a2727;
    --lighterbackground: #494444;
    --text: #C2C2C2;
    --lighttext: #aeadad;
    --strikethrough: #8e8888; 
    --textlink: #2F459C;
    --textlinkvisited: #2F459C;
    --secondary: #2F459C;
    --tertiary: #1f2e6b;
    --quaternary: #1e5cb4;
    --mark: #394679;
    --lightblue: #1f86c2;
    --darkerlightblue: #16567b;
    --lightestblue: #82a0a0;
    --green: #389f5f;
    --yellow: #c9ba10;
    --red: #cb4040;
    --orange: #cb8340;
    --purple: #b873c9;
    --codebase: #CDD6DD;
    --red: #BA1717;
    --bold: #BA1717;
    --italics: #F5D000;
    --peach: #655a4c;
    --root: var(--secondary);
    --flnode: var(--red);
    --blnode: var(--yellow);
}
