﻿/*
    Created By: Andrea Santinato & Marco Prelaz
    Created On: 13/02/2025
    Description: File globale che contiene una serie di variabili da utilizzare in tutti quanti i vari file di stile
*/

:root {
    --white: #ffffff;
    --black: #000000;
    --blue: #209AE2;
    --indigo: #6610f2;
    --purple: #6f42c1;
    --pink: #d63384;
    --red: #dc3545;
    --orange: #fd7e14;
    --yellow: #ffc107;
    --green: #198754;
    --teal: #20c997;
    --cyan: #0dcaf0;
    --gray-medium: #656565;
    --gray: #787878;
    --text-light: #f8f9fa !important;
    --text-dark: #212529 !important;
    /*--background-light: #f8f9fa !important;*/
    --background-light: #f0f3f7 !important;
    --background-dark: #212529 !important;
    --background-dark-softer: #2C3034 !important;
    --background-gray-light: #F8F8F8 !important;
    --background-gray-softer: #F2F2F2 !important;
    --background-gray-darker: #41474D !important;
}

@font-face {
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: normal;
    src: local('Open Sans'), url('../../fonts/OpenSans-VariableFont_wdth,wght.ttf') format('truetype');
}