elm - add color palette file build with the start of a default palette

This commit is contained in:
Carsten Haitzler 2021-05-06 13:08:14 +01:00
parent 2b91c4d9b8
commit 8b6e91d8bd
3 changed files with 17 additions and 0 deletions

View File

@ -0,0 +1,9 @@
group "Elm_Palette" struct {
value "version" int: 1000;
group "colors" list {
group "Elm_Palette_Color" struct { value "name" string: "/bg";
value "r" uchar: 64; value "g" uchar: 64; value "b" uchar: 64; value "a" uchar: 255; }
group "Elm_Palette_Color" struct { value "name" string: "/fg";
value "r" uchar: 160; value "g" uchar: 160; value "b" uchar: 160; value "a" uchar: 255; }
}
}

View File

@ -0,0 +1,7 @@
custom_target('colors_default.ecl',
input: 'default.src',
output: 'default.pal',
command: [eet_bin, '-e', '@OUTPUT@', 'palette', '@INPUT@', '1'],
install: true,
install_dir: join_paths(dir_data, 'elementary', 'colors'),
)

View File

@ -1,6 +1,7 @@
subdir('config')
subdir('desktop')
subdir('themes')
subdir('colors')
subdir('objects')
subdir('edje_externals')