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