diff options
author | Mattias Andrée <maandree@kth.se> | 2020-10-12 18:51:28 +0200 |
---|---|---|
committer | Mattias Andrée <maandree@kth.se> | 2020-10-12 18:51:28 +0200 |
commit | b7a164c2d1f3ad9e551ec2f98c502b262f1eb6cd (patch) | |
tree | 394d07ba47486bd9e4479ae807bdd21a07eab137 /config.mk | |
parent | Add apps/org.inkscape.Inkscape and apps/wire-desktop (diff) | |
download | simple-icon-theme-b7a164c2d1f3ad9e551ec2f98c502b262f1eb6cd.tar.gz simple-icon-theme-b7a164c2d1f3ad9e551ec2f98c502b262f1eb6cd.tar.bz2 simple-icon-theme-b7a164c2d1f3ad9e551ec2f98c502b262f1eb6cd.tar.xz |
Make it easy to change the colours
Signed-off-by: Mattias Andrée <maandree@kth.se>
Diffstat (limited to 'config.mk')
-rw-r--r-- | config.mk | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/config.mk b/config.mk new file mode 100644 index 0000000..db05de0 --- /dev/null +++ b/config.mk @@ -0,0 +1,30 @@ +PREFIX = /usr +ICONPREFIX = $(PREFIX)/share/icons + +THEME_NAME = Simple +THEME_DESC = A very simple icon theme +THEME_DIR = simple +BASE_COLOUR = bebebe +ALARM_RED = ef2929 +ALARM_ORANGE = f57900 +RED = cd656c +ORANGE = d69553 +YELLOW = ccad47 +GREEN = 32a679 +CYAN = 00a09f +BLUE = 2495be +MAGENTA = a46eb0 +OUTLINE = 000000 + +#DIR_SUFFIX_ = $(BASE_COLOUR)-$(ALARM_RED)-$(ALARM_ORANGE)-$(RED)-$(ORANGE)-$(YELLOW)-$(GREEN)-$(CYAN)-$(BLUE)-$(MAGENTA)-$(OUTLINE) +#DIR_SUFFIX = -$(DIR_SUFFIX_) +# Uncomment the two lines above if you want to use customised colours + +SIZES = 16 24 32 48 +# Supported sizes are 8, 16, 22, 24, 32, 36, and 48, +# you you want any other size add +# +# ###x###$(DIR_SUFFIX)/%.png: scalable$(DIR_SUFFIX)/%.svg conv +# ./conv $@ +# +# with ### replaces for the size to add support for. |