diff --git a/hyprtoolkit.conf b/hyprtoolkit.conf index ee2c74d..62033f9 100644 --- a/hyprtoolkit.conf +++ b/hyprtoolkit.conf @@ -1,7 +1,7 @@ -background = rgba(000000ff) -base = rgba(000000ff) -text = rgba(e8d8ffff) -alternate_base = rgba(110d1aff) -bright_text = rgba(000000ff) -accent = rgba(b58fffff) -accent_secondary = rgba(c79affff) \ No newline at end of file +background = rgba(191724ff) +base = rgba(191724ff) +text = rgba(e0def4ff) +alternate_base = rgba(26233aff) +bright_text = rgba(191724ff) +accent = rgba(ebbcbaff) +accent_secondary = rgba(9ccfd8ff) \ No newline at end of file diff --git a/noctalia.lua b/noctalia.lua deleted file mode 100644 index 3ed7375..0000000 --- a/noctalia.lua +++ /dev/null @@ -1,45 +0,0 @@ --- Generated by Noctalia - -local primary = "rgb(c8c4d7)" -local surface = "rgb(141314)" -local secondary = "rgb(c9c5cd)" -local error = "rgb(ffb4ab)" - -local function apply_theme() - hl.config({ - general = { - col = { - active_border = primary, - inactive_border = surface, - }, - }, - - group = { - col = { - border_active = secondary, - border_inactive = surface, - border_locked_active = error, - border_locked_inactive = surface, - }, - - groupbar = { - col = { - active = secondary, - inactive = surface, - locked_active = error, - locked_inactive = surface, - }, - }, - }, - }) -end - -return { - colors = { - primary = primary, - surface = surface, - secondary = secondary, - error = error, - }, - apply_theme = apply_theme -}