2023-06-18 18:10:20 +02:00
|
|
|
{ lib, fetchurl, ... }:
|
|
|
|
lib.fix (self: {
|
|
|
|
"Catppuccin Mocha" = fetchurl {
|
|
|
|
url = "https://catppuccin.github.io/discord/dist/catppuccin-mocha.theme.css";
|
2024-08-26 18:40:58 +02:00
|
|
|
sha256 = "1gafrnm5mz8zh63zvcr3jp5fkzs9l0xnpwq3b4k7sbbzwg04nzw5";
|
2023-06-18 18:10:20 +02:00
|
|
|
};
|
|
|
|
"Catppuccin Frappe" = fetchurl {
|
|
|
|
url = "https://catppuccin.github.io/discord/dist/catppuccin-frappe.theme.css";
|
2024-08-26 18:40:58 +02:00
|
|
|
sha256 = "05y43fcwgy4sv9q6c49r5c92jzvq8vjrk05wy2zblp5v7zrli7sl";
|
2023-06-18 18:10:20 +02:00
|
|
|
};
|
|
|
|
"Catppuccin Latte" = fetchurl {
|
|
|
|
url = "https://catppuccin.github.io/discord/dist/catppuccin-latte.theme.css";
|
2024-08-26 18:40:58 +02:00
|
|
|
sha256 = "1c7vwr8f6sip7lsyp770hm170pnld1ikvqdsh2fxlsdkkn6ay2k3";
|
2023-06-18 18:10:20 +02:00
|
|
|
};
|
|
|
|
"Catppuccin Macchiato" = fetchurl {
|
|
|
|
url = "https://catppuccin.github.io/discord/dist/catppuccin-macchiato.theme.css";
|
2024-08-26 18:40:58 +02:00
|
|
|
sha256 = "11vig9i5kwhcbblspcp928gf4mvvp3v0qsibmh82wyxyw9ddzr7d";
|
2023-06-18 18:10:20 +02:00
|
|
|
};
|
2023-07-06 21:34:24 +02:00
|
|
|
default.dark = self."Catppuccin Macchiato";
|
|
|
|
default.light = self."Catppuccin Latte";
|
2023-06-18 18:10:20 +02:00
|
|
|
})
|