:root {

    /*& primary colors most stuff is based off of */
    --primary_color: #86e673;
    --secondary_color: #78cc66;
    --background_color: #95ff80;

    /*& text colors */
    --text_color: #000000;
    --link_color: #3399ff;
    --error_color: #990000;

    /*~ price colors */
    --normal_price_color: var(--text_color);
    --best_price_color: #009900;
    --not_avaliable_price_color: var(--error_color);
    --average_price_color: #994499;
    --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: 85%;
    --hover_scale: 1.2;
    --hover_transition_time: 500ms;
    --text_glow_color: var(--text_color);

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

}