Ayu mirage theme
This commit is contained in:
parent
9904baca2d
commit
4627af9181
5 changed files with 43 additions and 13 deletions
16
rice.nix
16
rice.nix
|
|
@ -4,19 +4,27 @@ let
|
|||
# onedark = prev.lib.rice.palette.tPalette prev.lib.rice.color.hexToRgba (import ./themes/onedark.nix);
|
||||
# tomorrow-night = prev.lib.rice.palette.tPalette prev.lib.rice.color.hexToRgba (import ./themes/tomorrow-night.nix);
|
||||
# mkpm = with prev.lib.rice; palette.tPalette color.hexToRgba (import ./themes/monokai-pro-machine.nix);
|
||||
bloom = with prev.lib.rice;
|
||||
palette.tPalette color.hexToRgba (import ./themes/bloom.nix);
|
||||
# bloom = with prev.lib.rice;
|
||||
# palette.tPalette color.hexToRgba (import ./themes/bloom.nix);
|
||||
ayu-mirage = with prev.lib.rice;
|
||||
palette.tPalette color.hexToRgba (import ./themes/ayu-mirage.nix);
|
||||
in
|
||||
(rec {
|
||||
rice = {
|
||||
colorPalette = with prev.lib.rice; rec {
|
||||
normal = palette.defaultPalette // {
|
||||
inherit (bloom.normal) black red green yellow blue magenta cyan white;
|
||||
inherit (ayu-mirage.normal) black red green yellow blue magenta cyan white;
|
||||
};
|
||||
bright = palette.brighten 10 normal // {
|
||||
inherit (bloom.bright) black red green yellow blue magenta cyan white;
|
||||
inherit (ayu-mirage.bright) black red green yellow blue magenta cyan white;
|
||||
};
|
||||
dark = palette.darken 10 normal;
|
||||
primary = {
|
||||
background = color.black;
|
||||
foreground = color.white;
|
||||
bright_foreground = color.white;
|
||||
dim_foreground = dark.white;
|
||||
} // ayu-mirage.primary;
|
||||
};
|
||||
font = {
|
||||
normal = {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue