/* green_gold.css */

/* Variable for all colors on webpages */
:root{
    --banner-back:#FEFEFE;          /* Color behind the banner(basically white) */
    --main-back:#FFFFFF;            /* Main background for div shapes (white) */
    --logout-back:#FF2323;          /* Logout button background (and reset buttons) (red) */
    --logout-txt:#FFFFFF;           /* Text color on logout button (white) */
    --logout-hover:#C41B1B;         /* Logout button color when hover mouse on it (darker red) */

    --return-back:#389E41;          /* Return button color (and other continues buttons) (green) */
    --return-txt:#FFFFFF;           /* Text color for return button (white) */
    --return-hover:#2D8234;         /* Return button color when hover mouse on it (darker green) */

    --top-bar-back:#FFFFFF;         /* Top name bar background color (white) */
    --top-bar-credit-txt:#000000;   /* Text color of the credit txt (black); */
    --top-bar-credit:#F2E07F;       /* Color of box hehind the credit amount
                                       (also used for some other bars on the evaulate_day page)
                                       (lighter gold color) */

    --background-light:#FFFFFF;     /* Every page's background light color (on the left of gradient) */
    --background-dark:#ADFFB4;      /* Every page's backgroud dark color (on the right of gradient) */

    --main-bttn-back:#EFD966;       /* Every common button on most page's background color (goldy color) */
    --main-bttn-txt:#000000;        /* Every common button's text color (black) */
    --main-bttn-hover:#E5C100;      /* Every common button's color when mouse hovers over it (darker gold) */

    --disabled-bttn-back:#D3D3D3;   /* Color used for all disabled buttons (Gray) Text color is same as --main-bttn */
}

