8be00bc273
- Replace swaylock with gtklock (username + password form lockscreen) - Add gtklock/config.ini and gtklock/style.css (Tomorrow Night theme) - Update niri keybindings and swayidle to invoke gtklock -d - Update packages.txt: swaylock -> gtklock - Update install.sh: add AUR helper detection (yay/paru), symlink gtklock configs - Add theme/colors.css (CSS custom properties) and theme/colors.json - Update waybar/style.css, wofi/style.css, gtklock/style.css to import shared palette - Update README.md with project summary and component table - Add ARCHITECTURE.md and CLAUDE.md
59 lines
848 B
CSS
59 lines
848 B
CSS
@import url("../theme/colors.css");
|
|
|
|
* {
|
|
font-family: JetBrainsMono Nerd Font;
|
|
font-size: 13px;
|
|
}
|
|
|
|
window#waybar {
|
|
background: var(--tn-bg-a90);
|
|
color: var(--tn-fg);
|
|
}
|
|
|
|
#workspaces button {
|
|
padding: 0 8px;
|
|
color: var(--tn-fg-muted);
|
|
}
|
|
|
|
#workspaces button.focused {
|
|
color: var(--tn-blue);
|
|
}
|
|
|
|
#clock, #battery, #network, #pulseaudio,
|
|
#cpu, #temperature,
|
|
#custom-power-profile, #custom-fan-profile {
|
|
padding: 0 12px;
|
|
}
|
|
|
|
#custom-power-profile.performance {
|
|
color: var(--tn-yellow);
|
|
}
|
|
|
|
#custom-power-profile.power-saver {
|
|
color: var(--tn-green);
|
|
}
|
|
|
|
#battery.warning {
|
|
color: var(--tn-yellow);
|
|
}
|
|
|
|
#battery.critical {
|
|
color: var(--tn-red);
|
|
}
|
|
|
|
#cpu.warning {
|
|
color: var(--tn-yellow);
|
|
}
|
|
|
|
#cpu.critical {
|
|
color: var(--tn-red);
|
|
}
|
|
|
|
#temperature.warm {
|
|
color: var(--tn-yellow);
|
|
}
|
|
|
|
#temperature.critical {
|
|
color: var(--tn-red);
|
|
}
|