From 7f4d1d8661e4cff8f0095c24405e8c83159f4d6f Mon Sep 17 00:00:00 2001 From: zackartz Date: Sun, 24 Mar 2024 14:20:22 -0400 Subject: [PATCH] 263 current 2024-03-24 14:10:47 24.05.20240323.44d0940 6.8.0-zen1 * --- modules/rice/rio.nix | 40 ++++++++++++++++++++++++++++++++++++++++ 1 file changed, 40 insertions(+) create mode 100644 modules/rice/rio.nix diff --git a/modules/rice/rio.nix b/modules/rice/rio.nix new file mode 100644 index 0000000..fae4f73 --- /dev/null +++ b/modules/rice/rio.nix @@ -0,0 +1,40 @@ +{ + programas.rio = { + enable = true; + settings = { + colors = { + background = "#191724"; + foreground = "#e0def4"; + selection-background = "#e0def4"; + selection-foreground = "#191724"; + cursor = "#e0def4"; + black = "#26233a"; + red = "#eb6f92"; + green = "#9ccfd8"; + yellow = "#f6c177"; + blue = "#31748f"; + magenta = "#c4a7e7"; + cyan = "#ebbcba"; + white = "#e0def4"; + light_black = "#6e6a86"; + light_red = "#eb6f92"; + light_green = "#9ccfd8"; + light_yellow = "#f6c177"; + light_blue = "#31748f"; + light_magenta = "#c4a7e7"; + light_cyan = "#ebbcba"; + light_white = "#e0def4"; + }; + + fonts = { + size = 14; + + family = "Iosevka"; + }; + + window = { + background-opacity = "0.8"; + }; + }; + }; +}