From c535a3a6f4f0b4c91f3904dbe073beb18e8cfb80 Mon Sep 17 00:00:00 2001 From: "Carsten Haitzler (Rasterman)" Date: Mon, 9 May 2022 17:25:00 +0100 Subject: [PATCH] elm - palettes - add an empty palette by default for edj colorclasses edj files can (and should) ship their own color_classes and definitions. these color palette files override those. if you want to purely use what is in the theme edj you need no palette - or an empty one. this is that palette. --- data/elementary/colors/empty.edc | 3 +++ data/elementary/colors/meson.build | 1 + 2 files changed, 4 insertions(+) create mode 100644 data/elementary/colors/empty.edc diff --git a/data/elementary/colors/empty.edc b/data/elementary/colors/empty.edc new file mode 100644 index 0000000000..4863cbd55b --- /dev/null +++ b/data/elementary/colors/empty.edc @@ -0,0 +1,3 @@ +group "Elm_Palette" struct { + value "version" int: 1000; +} diff --git a/data/elementary/colors/meson.build b/data/elementary/colors/meson.build index 1a811f014e..4188df5479 100644 --- a/data/elementary/colors/meson.build +++ b/data/elementary/colors/meson.build @@ -1,5 +1,6 @@ pals = [ 'default', + 'empty', 'light', 'mauve-sunset', 'candy-mint',