modules/theme: update accent color to be purple

This commit is contained in:
Anthony Rodriguez 2024-12-16 15:24:46 +01:00
parent 4bae02f24a
commit 7d3c2669ea
Signed by: nezia
GPG key ID: EE3BE97C040A86CE

View file

@ -2,6 +2,7 @@
inputs, inputs,
config, config,
lib, lib,
lib',
pkgs, pkgs,
... ...
}: let }: let
@ -9,6 +10,8 @@
inherit (lib.strings) removePrefix; inherit (lib.strings) removePrefix;
inherit (lib.types) path package enum; inherit (lib.types) path package enum;
inherit (lib') generateGtkColors;
cfg = config.theme; cfg = config.theme;
in { in {
imports = [ imports = [
@ -411,12 +414,12 @@ in {
--online-indicator: ${base0B}; /* change to #23a55a for default green */ --online-indicator: ${base0B}; /* change to #23a55a for default green */
--dnd-indicator: ${base08}; /* change to #f13f43 for default red */ --dnd-indicator: ${base08}; /* change to #f13f43 for default red */
--idle-indicator: ${base0A}; /* change to #f0b232 for default yellow */ --idle-indicator: ${base0A}; /* change to #f0b232 for default yellow */
--streaming-indicator: ${base0D}; /* change to #593695 for default purple */ --streaming-indicator: ${base0E}; /* change to #593695 for default purple */
/* accent colors */ /* accent colors */
--accent-1: ${base0D}; /* links */ --accent-1: ${base0D}; /* links */
--accent-2: ${base0D}; /* general unread/mention elements, some icons when active */ --accent-2: ${base0E}; /* general unread/mention elements, some icons when active */
--accent-3: ${base0D}; /* accent buttons */ --accent-3: ${base0E}; /* accent buttons */
--accent-4: ${base03}; /* accent buttons when hovered */ --accent-4: ${base03}; /* accent buttons when hovered */
--accent-5: ${base07}; /* accent buttons when clicked */ --accent-5: ${base07}; /* accent buttons when clicked */
--mention: ${base00}1a; /* mentions & mention messages */ --mention: ${base00}1a; /* mentions & mention messages */
@ -431,7 +434,7 @@ in {
--text-5: ${base04}; /* muted channels/chats and timestamps */ --text-5: ${base04}; /* muted channels/chats and timestamps */
/* background and dark colors */ /* background and dark colors */
--bg-1: ${base0D}; /* dark buttons when clicked */ --bg-1: ${base0E}; /* dark buttons when clicked */
--bg-2: ${base02}; /* dark buttons */ --bg-2: ${base02}; /* dark buttons */
--bg-3: ${base01}; /* spacing, secondary elements */ --bg-3: ${base01}; /* spacing, secondary elements */
--bg-4: ${base00}; /* main background color */ --bg-4: ${base00}; /* main background color */