mirror of
https://github.com/daylinmorgan/yartsu.git
synced 2024-12-22 04:20:44 -06:00
fix: correct foreground/background order
This commit is contained in:
parent
36d8cf1ac7
commit
6b7cf9439c
2 changed files with 9 additions and 9 deletions
|
@ -2,8 +2,8 @@ THEMES = (
|
|||
(
|
||||
"cat-mocha",
|
||||
(
|
||||
[198, 208, 245],
|
||||
[30, 30, 46],
|
||||
[198, 208, 245],
|
||||
[
|
||||
[179, 188, 223],
|
||||
[243, 139, 168],
|
||||
|
@ -29,8 +29,8 @@ THEMES = (
|
|||
(
|
||||
"cat-macchiato",
|
||||
(
|
||||
[197, 207, 245],
|
||||
[36, 39, 58],
|
||||
[197, 207, 245],
|
||||
[
|
||||
[179, 188, 223],
|
||||
[243, 139, 168],
|
||||
|
@ -56,8 +56,8 @@ THEMES = (
|
|||
(
|
||||
"cat-frappe",
|
||||
(
|
||||
[198, 206, 239],
|
||||
[48, 52, 70],
|
||||
[198, 206, 239],
|
||||
[
|
||||
[179, 188, 223],
|
||||
[243, 139, 168],
|
||||
|
@ -83,8 +83,8 @@ THEMES = (
|
|||
(
|
||||
"cat-latte",
|
||||
(
|
||||
[76, 79, 105],
|
||||
[239, 241, 245],
|
||||
[76, 79, 105],
|
||||
[
|
||||
[179, 188, 223],
|
||||
[243, 139, 168],
|
||||
|
@ -110,8 +110,8 @@ THEMES = (
|
|||
(
|
||||
"dracula",
|
||||
(
|
||||
[248, 248, 242],
|
||||
[40, 42, 54],
|
||||
[248, 248, 242],
|
||||
[
|
||||
[33, 34, 44],
|
||||
[255, 85, 85],
|
||||
|
@ -137,8 +137,8 @@ THEMES = (
|
|||
(
|
||||
"gruvbox-dark",
|
||||
(
|
||||
[213, 196, 161],
|
||||
[40, 40, 40],
|
||||
[213, 196, 161],
|
||||
[
|
||||
[40, 40, 40],
|
||||
[251, 73, 52],
|
||||
|
@ -164,8 +164,8 @@ THEMES = (
|
|||
(
|
||||
"gruvbox-light",
|
||||
(
|
||||
[80, 73, 69],
|
||||
[251, 241, 199],
|
||||
[80, 73, 69],
|
||||
[
|
||||
[251, 241, 199],
|
||||
[157, 0, 6],
|
||||
|
@ -191,8 +191,8 @@ THEMES = (
|
|||
(
|
||||
"nord",
|
||||
(
|
||||
[215, 222, 233],
|
||||
[46, 52, 64],
|
||||
[215, 222, 233],
|
||||
[
|
||||
[59, 66, 82],
|
||||
[191, 97, 106],
|
||||
|
|
|
@ -69,7 +69,7 @@ class YartsuTheme(TerminalTheme):
|
|||
|
||||
class ThemeDB:
|
||||
def __init__(self):
|
||||
self.default = os.getenv("YARTSU_THEME", "cat-frappe")
|
||||
self.default = os.getenv("YARTSU_THEME", "cat-mocha")
|
||||
self.selected = self.default
|
||||
self.themes = {
|
||||
**self._load_yartsu_themes(),
|
||||
|
|
Loading…
Reference in a new issue