diff options
Diffstat (limited to 'user/home')
| -rw-r--r-- | user/home/vencord/default.nix | 8 | ||||
| -rw-r--r-- | user/home/vencord/mocha-blue.theme.css | 11 | ||||
| -rw-r--r-- | user/home/vencord/mocha-pink.theme.css | 11 |
3 files changed, 29 insertions, 1 deletions
diff --git a/user/home/vencord/default.nix b/user/home/vencord/default.nix index b96d4b1..cf75ec6 100644 --- a/user/home/vencord/default.nix +++ b/user/home/vencord/default.nix @@ -4,11 +4,17 @@ enable = lib.mkDefault false; vencord = { themes = { + mocha-blue = ./mocha-blue.theme.css; + mocha-pink = ./mocha-pink.theme.css; rose-pine = ./rose-pine.css; }; settings = { - enabledThemes = [ ]; + enabledThemes = + if (config.desktop.accent == "pink") then + [ "mocha-pink.theme.css" ] + else + [ "mocha-blue.theme.css" ]; plugins = { AlwaysExpandRoles.enabled = true; MessageLogger.enabled = true; diff --git a/user/home/vencord/mocha-blue.theme.css b/user/home/vencord/mocha-blue.theme.css new file mode 100644 index 0000000..2900f07 --- /dev/null +++ b/user/home/vencord/mocha-blue.theme.css @@ -0,0 +1,11 @@ +/** + * @name Catppuccin Mocha + * @author winston#0001 + * @authorId 505490445468696576 + * @version 0.2.0 + * @description 🎮 Soothing pastel theme for Discord + * @website https://github.com/catppuccin/discord + * @invite r6Mdz5dpFc + * **/ + +@import url("https://catppuccin.github.io/discord/dist/catppuccin-mocha-blue.theme.css"); diff --git a/user/home/vencord/mocha-pink.theme.css b/user/home/vencord/mocha-pink.theme.css new file mode 100644 index 0000000..880a410 --- /dev/null +++ b/user/home/vencord/mocha-pink.theme.css @@ -0,0 +1,11 @@ +/** + * @name Catppuccin Mocha + * @author winston#0001 + * @authorId 505490445468696576 + * @version 0.2.0 + * @description 🎮 Soothing pastel theme for Discord + * @website https://github.com/catppuccin/discord + * @invite r6Mdz5dpFc + * **/ + +@import url("https://catppuccin.github.io/discord/dist/catppuccin-mocha-pink.theme.css"); |
