mirror of
https://github.com/alyraffauf/nixcfg.git
synced 2024-11-25 06:11:55 -05:00
rofi: restore theme
This commit is contained in:
parent
62f82743bf
commit
865a0572e4
|
@ -50,7 +50,7 @@ in {
|
|||
lightbgopaque = mkRgb "base01";
|
||||
lightfgopaque = mkRgb "base06";
|
||||
|
||||
background-color = mkRgb "base00";
|
||||
background-color = mkLiteral "transparent";
|
||||
separatorcolor = mkLiteral "@foreground";
|
||||
border-color = mkLiteral "@foreground";
|
||||
selected-normal-foreground = mkLiteral "@lightbgopaque";
|
||||
|
@ -60,17 +60,17 @@ in {
|
|||
selected-urgent-foreground = mkLiteral "@background";
|
||||
selected-urgent-background = mkLiteral "@red";
|
||||
normal-foreground = mkLiteral "@foreground";
|
||||
normal-background = mkLiteral "@background";
|
||||
normal-background = mkLiteral "transparent";
|
||||
active-foreground = mkLiteral "@blue";
|
||||
active-background = mkLiteral "@background";
|
||||
active-background = mkLiteral "transparent";
|
||||
urgent-foreground = mkLiteral "@red";
|
||||
urgent-background = mkLiteral "@background";
|
||||
urgent-background = mkLiteral "transparent";
|
||||
alternate-normal-foreground = mkLiteral "@foreground";
|
||||
alternate-normal-background = mkLiteral "@lightbg";
|
||||
alternate-normal-background = mkLiteral "transparent";
|
||||
alternate-active-foreground = mkLiteral "@blue";
|
||||
alternate-active-background = mkLiteral "@lightbg";
|
||||
alternate-active-background = mkLiteral "transparent";
|
||||
alternate-urgent-foreground = mkLiteral "@red";
|
||||
alternate-urgent-background = mkLiteral "@lightbg";
|
||||
alternate-urgent-background = mkLiteral "transparent";
|
||||
|
||||
# Text Colors
|
||||
base-text = mkRgb "base05";
|
||||
|
@ -168,6 +168,7 @@ in {
|
|||
scrollbar.handle-color = mkLiteral "@normal-foreground";
|
||||
sidebar.border-color = mkLiteral "@separatorcolor";
|
||||
button.text-color = mkLiteral "@normal-text";
|
||||
|
||||
"button selected" = {
|
||||
background-color = mkLiteral "@selected-normal-background";
|
||||
text-color = mkLiteral "@selected-normal-text";
|
||||
|
@ -190,7 +191,7 @@ in {
|
|||
|
||||
prompt = {
|
||||
spacing = 0;
|
||||
margin = mkLiteral "1px";
|
||||
margin = 1;
|
||||
};
|
||||
|
||||
"#inputbar" = {
|
||||
|
|
|
@ -10,11 +10,6 @@
|
|||
|
||||
environment.systemPackages = with pkgs; [git inxi python3];
|
||||
|
||||
home-manager.sharedModules = [
|
||||
{
|
||||
}
|
||||
];
|
||||
|
||||
stylix = {
|
||||
enable = true;
|
||||
base16Scheme = "${pkgs.base16-schemes}/share/themes/rose-pine-moon.yaml";
|
||||
|
|
Loading…
Reference in a new issue