:root {

    /*& primary colors most stuff is based off of */
    --primary_color: #0f474d;
    --secondary_color: #197680;
    --background_color: #0e2326;

    /*& text colors */
    --text_color: #FFFFFF;
    --link_color: #3399ff;
    --error_color: #FF5555;

    /*~ price colors */
    --normal_price_color: var(--text_color);
    --best_price_color: #55FF55;
    --not_avaliable_price_color: var(--error_color);
    --average_price_color: #FF55FF;
    --text_shadow_color: var(--primary_color);

    /*? line in content divs */
    --line_color: var(--secondary_color);
    
    /*? stats page selected shop color */
    --selected_shop_color: var(--average_price_color);

    /*& object colors */
    --div_background_color: var(--primary_color);
    --input_color: var(--secondary_color);

    /*& hover animations */
    --hover_brightness: 125%;
    --hover_scale: 1.2;
    --hover_transition_time: 500ms;
    --text_glow_color: var(--text_color);

    /*& svg icons */   
    --search_svg: url('../../../images/svg/white/search.svg');
    --dropdown_svg: url('../../images/svg/white/dropdown.svg');
    --settings_svg: url('../../images/svg/white/settings.svg');
    --theme_button_svg: url('./images/svg/white/theme.svg');
    --discord_button_svg: url('./images/svg/white/discord.svg');

}