parent
7afd75bd5a
commit
cc3e546f3e
|
@ -155,10 +155,10 @@
|
|||
name = if config.lib.stylix.scheme.variant == "light" then "Papirus-Light" else "Papirus-Dark";
|
||||
};
|
||||
};
|
||||
# stylix.targets.gtk.extraCss = with config.lib.stylix.scheme.withHashtag; ''
|
||||
# @define-color accent_color ${base0C-hex};
|
||||
# @define-color accent_bg_color ${base0C-hex};
|
||||
# '';
|
||||
stylix.targets.gtk.extraCss = with config.lib.stylix.scheme.withHashtag; ''
|
||||
@define-color accent_color ${base0E-hex};
|
||||
@define-color accent_bg_color ${base0E-hex};
|
||||
'';
|
||||
xdg = {
|
||||
mime.enable = true;
|
||||
mimeApps =
|
||||
|
|
|
@ -1,7 +1,14 @@
|
|||
{ lib, ... }:
|
||||
{ config, lib, ... }:
|
||||
{
|
||||
services.avizo = {
|
||||
enable = true;
|
||||
settings.default.image-opacity = lib.mkForce "1.0";
|
||||
settings.default = {
|
||||
image-opacity = lib.mkForce "1.0";
|
||||
border-color =
|
||||
let
|
||||
scheme = config.lib.stylix.scheme;
|
||||
in
|
||||
lib.mkForce "rgba(${scheme.base0E-rgb-r}, ${scheme.base0E-rgb-g}, ${scheme.base0E-rgb-b}, 1.0)";
|
||||
};
|
||||
};
|
||||
}
|
||||
|
|
|
@ -19,6 +19,7 @@
|
|||
width = 1;
|
||||
radius = 5;
|
||||
};
|
||||
colors.border = lib.mkForce "${config.lib.stylix.scheme.base0E}ff";
|
||||
};
|
||||
};
|
||||
}
|
||||
|
|
|
@ -61,7 +61,7 @@
|
|||
let
|
||||
font = config.stylix.fonts.sansSerif.name;
|
||||
scheme = config.lib.stylix.scheme;
|
||||
accent = scheme.base0D;
|
||||
accent = scheme.base0E;
|
||||
in
|
||||
{
|
||||
enable = true;
|
||||
|
@ -158,6 +158,7 @@
|
|||
layout = "master";
|
||||
gaps_in = 2.5;
|
||||
gaps_out = 5;
|
||||
"col.active_border" = lib.mkForce "rgb(${config.lib.stylix.scheme.base0E})";
|
||||
};
|
||||
master = {
|
||||
allow_small_split = true;
|
||||
|
|
|
@ -12,6 +12,7 @@
|
|||
iconPath = with config.gtk.iconTheme; "${package}/share/icons/${name}";
|
||||
borderRadius = 5;
|
||||
borderSize = 1;
|
||||
borderColor = lib.mkForce config.lib.stylix.scheme.withHashtag.base0E;
|
||||
defaultTimeout = (builtins.mul 5 1000); # 5s timeout
|
||||
};
|
||||
}
|
||||
|
|
|
@ -318,7 +318,7 @@
|
|||
|
||||
tooltip {
|
||||
background: ${scheme.base00};
|
||||
border: 1px solid ${scheme.base0D};
|
||||
border: 1px solid ${scheme.base0E};
|
||||
border-radius: 5px;
|
||||
box-shadow: none;
|
||||
}
|
||||
|
@ -366,7 +366,7 @@
|
|||
color: ${scheme.base03};
|
||||
}
|
||||
#workspaces button.active {
|
||||
color: ${scheme.base0D};
|
||||
color: ${scheme.base0E};
|
||||
}
|
||||
#workspaces button.urgent {
|
||||
color: ${scheme.base09};
|
||||
|
|
Loading…
Reference in a new issue