Fix tile and text colors

This commit is contained in:
Albert Armea 2025-12-27 19:47:11 -05:00
parent 1bc8b0c790
commit 0f837e26d6
2 changed files with 12 additions and 1 deletions

View file

@ -25,6 +25,7 @@ window {
} }
.launcher-tile { .launcher-tile {
background: #16213e;
background-color: #16213e; background-color: #16213e;
border-radius: 16px; border-radius: 16px;
padding: 16px; padding: 16px;
@ -32,14 +33,18 @@ window {
min-height: 140px; min-height: 140px;
border: 2px solid transparent; border: 2px solid transparent;
transition: all 200ms ease; transition: all 200ms ease;
color: #e0e0e0;
box-shadow: none;
} }
.launcher-tile:hover { .launcher-tile:hover {
background: #1f3460;
background-color: #1f3460; background-color: #1f3460;
border-color: #4a90d9; border-color: #4a90d9;
} }
.launcher-tile:active { .launcher-tile:active {
background: #0f3460;
background-color: #0f3460; background-color: #0f3460;
} }
@ -48,11 +53,16 @@ window {
} }
.tile-label { .tile-label {
color: #ffffff; color: #e0e0e0;
font-size: 14px; font-size: 14px;
font-weight: 500; font-weight: 500;
} }
.launcher-tile image {
-gtk-icon-style: regular;
color: #e0e0e0;
}
.status-label { .status-label {
color: #888888; color: #888888;
font-size: 18px; font-size: 18px;

View file

@ -49,6 +49,7 @@ mod imp {
obj.set_child(Some(&content)); obj.set_child(Some(&content));
obj.add_css_class("launcher-tile"); obj.add_css_class("launcher-tile");
obj.add_css_class("flat");
obj.set_size_request(160, 160); obj.set_size_request(160, 160);
} }
} }