@font-face {
    font-family: 'Material Icons';
    font-style: normal;
    font-weight: 400;
    src: local('Material Icons'),
        local('MaterialIcons-Regular'),
        url(/assets/MaterialIcons-Regular.ttf) format('truetype');
}

@font-face {
    font-family: 'Mulish';
    font-style: normal;
    font-weight: 400;
    src: local('Mulish'),
        local('Mulish'),
        url(/assets/Mulish-VariableFont_wght.ttf) format('truetype');
}

.material-icons {
    font-family: 'Material Icons';
    font-weight: normal;
    font-style: normal;
    font-size: 24px;
    display: inline-block;
    line-height: 1;
    text-transform: none;
    letter-spacing: normal;
    word-wrap: normal;
    white-space: nowrap;
    direction: ltr;
  
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    -moz-osx-font-smoothing: grayscale;
    font-feature-settings: 'liga';
}

:root {
    --main: #284cd1;
    --background:  #14151a;
    --background-lighter: #252730;
    --background-lightest: #57585a;
    --textbox-background: #0d0e0f;
    --context-menu-background: var(--textbox-background);
    --placeholder-color: #919191;
    --transparent: rgba(0, 0, 0, 0);

    --text-color-main: white;
    --text-color-secondary: #c0c0c0;
    --text-color-buttons: white;
    --text-color-opposite: black;
    --textbox-placeholder: rgba(255, 255, 255, 0.5);
    --background-opaque: #14151aef;
    --element-outline: hsl(197,100%,47.8%);
    --white: white;
    --green: #57F287;
    --yellow: #FEE75C;
    --red: #ED4245;
    --orange: orange;
    --black: #000000;
    --premium: #800080;

    --font: 'Mulish', sans-serif;
    --border-radius: 5px;
    --word-break-user-generated: break-all;
    --word-break-predefined: normal;
}

[data-theme="light"] {
    --background: #ffffff;
    --background-lighter: #e4e4e4;
    --background-lightest: #adadad;
    --textbox-background: #b9b9b9;
    --context-menu-background: #ffffff;
    --placeholder-color: #ffffff;

    --text-color-main: rgb(0, 0, 0);
    --text-color-secondary: rgb(41, 41, 41);
    --text-color-buttons: white;
    --text-color-opposite: white;
    --textbox-placeholder: rgba(0, 0, 0, 0.5);
    --element-outline: hsl(197,100%,47.8%);
    --background-opaque: #ffffffef;
    --yellow: #FEE75C;
    --green: #00be3c;
    --red: #ED4245;
    --orange: orange;
}