pho-earth-adaptive/imports/import_honor_plasma.css

42 lines
1.7 KiB
CSS

/* This imports current selected theme's colors and then overwrites it with Plasma's colors */
@import "plasma_colors.css"; /*unfortunately if it does not exist, this theme will be broken!*/
@import "../theme_colors.css";
@define-color window_fg @theme_fg_color_breeze;
@define-color window_bg @theme_bg_color_breeze;
@define-color text_widget_fg @theme_text_color_breeze;
@define-color text_widget_bg @theme_base_color_breeze;
@define-color disabled_fg @insensitive_fg_color_breeze;
@define-color disabled_bg @insensitive_bg_color_breeze;
@define-color selected_fg @theme_selected_fg_color_breeze;
@define-color selected_bg @theme_selected_bg_color_breeze;
@define-color button_fg @theme_button_foreground_normal_breeze;
@define-color button_bg @theme_button_background_normal_breeze;
@define-color button_pushed_fg @button_fg; /*could need to be @selected_fg on some themes. Plasma does not have a setting for toggled buttons*/
@define-color button_pushed_bg mix(@button_bg, @selected_bg, 0.5); /*Plasma does not have a setting for toggled buttons*/
@define-color border_color shade(mix(@window_fg, @text_widget_bg, 0.7), 1); /* to honor Plasma's that would be @borders_breeze, instead of shade(...) */
@define-color warning_color @warning_color_breeze;
@define-color error_color @error_color_breeze;
@define-color success_color @success_color_breeze;
@define-color titlebar_active_fg @theme_titlebar_foreground_breeze;
@define-color titlebar_active_bg @theme_titlebar_background_breeze;
@define-color titlebar_backdrop_fg @theme_titlebar_foreground_backdrop_breeze;
@define-color titlebar_backdrop_bg @theme_titlebar_background_backdrop_breeze;
@define-color hint_fg @tooltip_text_breeze;
@define-color hint_bg @tooltip_background_breeze;