use system theme colors

This commit is contained in:
Salem Yaslem 2022-10-18 14:36:21 +03:00
parent 56f5598514
commit d9e7458725

View File

@ -1,24 +1,24 @@
#area_chooser_window { #area_chooser_window {
background-color: rgba(255, 255, 255, 0); background-color: alpha(@theme_selected_bg_color, 0.1);
border: 3px dashed rgba(0, 0, 0, 1); border: 3px dashed @theme_selected_bg_color;
} }
#area_set_button { #area_set_button {
color: rgba(255, 255, 255, 1); color: @theme_selected_fg_color;
background: rgba(255, 255, 255, 0); background: @theme_selected_bg_color;
} }
#area_grab_button:checked{ #area_grab_button:checked{
color: rgba(255, 255, 255, 1); color: @theme_selected_fg_color;
background: rgba(32.0, 74.0, 135, 1); background: @theme_selected_bg_color;
} }
#screen_grab_button:checked{ #screen_grab_button:checked{
color: rgba(255, 255, 255, 1); color: @theme_selected_fg_color;
background: rgba(32.0, 74.0, 135, 1); background: @theme_selected_bg_color;
} }
#window_grab_button:checked{ #window_grab_button:checked{
color: rgba(255, 255, 255, 1); color: @theme_selected_fg_color;
background: rgba(32.0, 74.0, 135, 1); background: @theme_selected_bg_color;
} }