/** GTK NAMED COLORS: these might be reused by apps, keep in sync with Adwaita **/
/*
widget text/foreground color */
@define-color theme_fg_color @fg_color;
/*
text color for entries, views and content in general */
@define-color theme_text_color @fg_color;
/*
widget base background color */
@define-color theme_bg_color @bg_color;
/*
text widgets and the like base background color */
@define-color theme_base_color @base_color;
/*
base background color of selections */
@define-color theme_selected_bg_color @selected_bg_color;
/*
text/foreground color of selections */
@define-color theme_selected_fg_color @selected_fg_color;
/*
base background color of insensitive widgets */
@define-color insensitive_bg_color shade(@bg_color, 0.95);
/*
text foreground color of insensitive widgets */
@define-color insensitive_fg_color shade(@fg_color, 0.6);
/*
insensitive text widgets and the like base background color */
@define-color insensitive_base_color @theme_base_color;
/*
widget text/foreground color on backdrop windows */
@define-color theme_unfocused_fg_color @backdrop_fg_color;
/*
text color for entries, views and content in general on backdrop windows */
@define-color theme_unfocused_text_color @backdrop_text_color;
/*
widget base background color on backdrop windows */
@define-color theme_unfocused_bg_color @theme_bg_color;
/*
text widgets and the like base background color on backdrop windows */
@define-color theme_unfocused_base_color @theme_base_color;
/*
base background color of selections on backdrop windows */
@define-color theme_unfocused_selected_bg_color @backdrop_selected_bg_color;
/*
text/foreground color of selections on backdrop windows */
@define-color theme_unfocused_selected_fg_color @backdrop_selected_fg_color;
/*
insensitive color on backdrop windows*/
@define-color unfocused_insensitive_color @insensitive_fg_color;
/*
widgets main borders color */
@define-color borders alpha (shade (@bg_color, 0.45), 0.3);
/*
widgets main borders color on backdrop windows */
@define-color unfocused_borders @borders;
/*
these are pretty self explanatory */
@define-color warning_color #eca918;
@define-color error_color #df382c;
@define-color success_color #38b44a;

/*
these colors are exported for the window manager and shouldn't be used in applications,
read if you used those and something break with a version upgrade you're on your own... */
@define-color wm_title shade (@dark_bg_color, 0.4);
@define-color wm_unfocused_title #a39e9a;
@define-color wm_highlight rgba(0, 0, 0, 0.1);
@define-color wm_borders_edge rgba(0, 0, 0, 0.1);
@define-color wm_bg_a shade (#edebe6, 1.06);
@define-color wm_bg_b @dark_bg_color;
@define-color wm_shadow alpha(@active_shadow_color, 0.85);
@define-color wm_border alpha(black, 0.18);
@define-color wm_button_hover_color_a shade(#fdfdfd, 1.3);
@define-color wm_button_hover_color_b #fdfdfd;
@define-color wm_button_active_color_a shade(#fdfdfd, 0.85);
@define-color wm_button_active_color_b shade(#fdfdfd, 0.89);
@define-color wm_button_active_color_c shade(#fdfdfd, 0.9);
@define-color content_view_bg #ffffff;

/* misc colors used by gtk+
 *
 * Gtk doesn't currently expand color variables for style properties. Thus,
 * gtk-widgets.css uses literal color names, but includes a comment containing
 * the name of the variable. Please remember to change values there as well
 * when changing one of the variables below.
 */
@define-color button_text_shadow alpha(white, 0.4);
@define-color info_fg_color rgb (181, 171, 156);
@define-color info_bg_color rgb (252, 252, 189);
@define-color warning_fg_color rgb (173, 120, 41);
@define-color warning_bg_color rgb (250, 173, 61);
@define-color question_fg_color rgb (97, 122, 214);
@define-color question_bg_color rgb (138, 173, 212);
@define-color error_fg_color rgb (235, 235, 235);
@define-color error_bg_color rgb (223, 56, 44);
@define-color link_color #007aa6;
