diff options
| author | Josh <joshott16@gmail.com> | 2025-07-24 08:15:52 -0400 |
|---|---|---|
| committer | Josh <joshott16@gmail.com> | 2025-07-24 08:15:52 -0400 |
| commit | 21150560c5762a4f6f446e74f2020f61d9ba4221 (patch) | |
| tree | 73a20509a1f19e90bc6e4bd240e89332693e2c8d /rofi | |
| parent | 993b580ec5ea47a8f7d5b1d84556d6f27dc6a22c (diff) | |
| download | dotfiles-21150560c5762a4f6f446e74f2020f61d9ba4221.tar.gz dotfiles-21150560c5762a4f6f446e74f2020f61d9ba4221.zip | |
the great colorscheme migration
Diffstat (limited to 'rofi')
| -rw-r--r-- | rofi/config.rasi | 5 | ||||
| -rw-r--r-- | rofi/theme.rasi | 105 |
2 files changed, 107 insertions, 3 deletions
diff --git a/rofi/config.rasi b/rofi/config.rasi index f8db5d4..80a7b9c 100644 --- a/rofi/config.rasi +++ b/rofi/config.rasi @@ -2,7 +2,7 @@ configuration{ modi: "run,drun"; icon-theme: "Papirus"; show-icons: true; - terminal: "wezterm"; + terminal: "kitty"; drun-display-format: "{icon} {name}"; location: 0; disable-history: false; @@ -14,5 +14,4 @@ configuration{ sidebar-mode: false; } -@theme "catppuccin-mocha" - +@theme "theme" diff --git a/rofi/theme.rasi b/rofi/theme.rasi new file mode 100644 index 0000000..2ccfa97 --- /dev/null +++ b/rofi/theme.rasi @@ -0,0 +1,105 @@ +@theme "colors" + +* { + width: 600; + font: "Fira Code Nerd Font 14"; +} + +element-text, element-icon , mode-switcher { + background-color: inherit; + text-color: inherit; +} + +window { + height: 360px; + border: 3px; + border-color: @border-col; + background-color: @bg-col; +} + +mainbox { + background-color: @bg-col; +} + +inputbar { + children: [prompt,entry]; + background-color: @bg-col; + border-radius: 5px; + padding: 2px; +} + +prompt { + background-color: @blue; + padding: 6px; + text-color: @bg-col; + border-radius: 3px; + margin: 20px 0px 0px 20px; +} + +textbox-prompt-colon { + expand: false; + str: ":"; +} + +entry { + padding: 6px; + margin: 20px 0px 0px 10px; + text-color: @fg-col; + background-color: @bg-col; +} + +listview { + border: 0px 0px 0px; + padding: 6px 0px 0px; + margin: 10px 0px 0px 20px; + columns: 2; + lines: 5; + background-color: @bg-col; +} + +element { + padding: 5px; + background-color: @bg-col; + text-color: @fg-col ; +} + +element-icon { + size: 25px; +} + +element selected { + background-color: @selected-col ; + text-color: @fg-col2 ; +} + +mode-switcher { + spacing: 0; + } + +button { + padding: 10px; + background-color: @bg-col-light; + text-color: @grey; + vertical-align: 0.5; + horizontal-align: 0.5; +} + +button selected { + background-color: @bg-col; + text-color: @blue; +} + +message { + background-color: @bg-col-light; + margin: 2px; + padding: 2px; + border-radius: 5px; +} + +textbox { + padding: 6px; + margin: 20px 0px 0px 20px; + text-color: @blue; + background-color: @bg-col-light; +} + |