b0daea2a73
- theme/colors.css: replace CSS custom properties (--var) with GTK3 @define-color — GTK3 CSS parser rejects -- syntax, crashing waybar - waybar/style.css, wofi/style.css, gtklock/style.css: update var(--x) references to @x to match - waybar/config.jsonc: pin clock timezone to America/Vancouver - niri/config.kdl: change Print to Mod+Print for screenshot keybind Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
73 lines
1.2 KiB
CSS
73 lines
1.2 KiB
CSS
@import url("../theme/colors.css");
|
|
|
|
/* gtklock style - Tomorrow Night theme */
|
|
|
|
window {
|
|
background-color: @tn-bg;
|
|
}
|
|
|
|
#body {
|
|
background-color: transparent;
|
|
}
|
|
|
|
#clock-label {
|
|
color: @tn-fg;
|
|
font-family: "JetBrainsMono Nerd Font";
|
|
font-size: 48px;
|
|
font-weight: bold;
|
|
margin-bottom: 8px;
|
|
}
|
|
|
|
#date-label {
|
|
color: @tn-fg-dim;
|
|
font-family: "JetBrainsMono Nerd Font";
|
|
font-size: 16px;
|
|
margin-bottom: 24px;
|
|
}
|
|
|
|
#username-label {
|
|
color: @tn-fg;
|
|
font-family: "JetBrainsMono Nerd Font";
|
|
font-size: 18px;
|
|
font-weight: bold;
|
|
margin-bottom: 12px;
|
|
}
|
|
|
|
#input-box {
|
|
background-color: @tn-bg-alt;
|
|
border: 2px solid @tn-bg-high;
|
|
border-radius: 6px;
|
|
color: @tn-fg;
|
|
font-family: "JetBrainsMono Nerd Font";
|
|
font-size: 14px;
|
|
padding: 8px 12px;
|
|
min-width: 280px;
|
|
}
|
|
|
|
#input-box:focus {
|
|
border-color: @tn-blue;
|
|
}
|
|
|
|
#error-label {
|
|
color: @tn-red;
|
|
font-family: "JetBrainsMono Nerd Font";
|
|
font-size: 13px;
|
|
margin-top: 8px;
|
|
}
|
|
|
|
#unlock-button {
|
|
background-color: @tn-bg-high;
|
|
border: none;
|
|
border-radius: 6px;
|
|
color: @tn-fg;
|
|
font-family: "JetBrainsMono Nerd Font";
|
|
font-size: 14px;
|
|
padding: 8px 20px;
|
|
margin-top: 12px;
|
|
}
|
|
|
|
#unlock-button:hover {
|
|
background-color: @tn-blue;
|
|
color: @tn-bg;
|
|
}
|