From 7db9ff524ee351c72fcdcff6f8d74110b0a52cb5 Mon Sep 17 00:00:00 2001 From: Santiago Lo Coco Date: Fri, 10 Dec 2021 09:47:19 -0300 Subject: [PATCH] Add themes --- config.def.h | 9 +++++++++ themes/darkblue.h | 7 +++++++ themes/dracula.h | 7 +++++++ themes/gruv.h | 6 ++++++ themes/monokai.h | 6 ++++++ themes/moonfly.h | 6 ++++++ themes/ocean.h | 6 ++++++ themes/onedark.h | 6 ++++++ themes/papercolor.h | 6 ++++++ themes/purple.h | 0 themes/theme.h | 7 +++++++ 11 files changed, 66 insertions(+) create mode 100755 themes/darkblue.h create mode 100755 themes/dracula.h create mode 100755 themes/gruv.h create mode 100755 themes/monokai.h create mode 100755 themes/moonfly.h create mode 100755 themes/ocean.h create mode 100755 themes/onedark.h create mode 100755 themes/papercolor.h create mode 100755 themes/purple.h create mode 100644 themes/theme.h diff --git a/config.def.h b/config.def.h index b8299fd..5285a7b 100644 --- a/config.def.h +++ b/config.def.h @@ -20,6 +20,7 @@ static const int topbar = 1; /* 0 means bottom bar */ //static const char *fonts[] = { "monospace:size=10"}; static const char *fonts[] = { "monospace:size=10", "Noto Color Emoji:pixelsize=12:antialias=true:autohint=true" }; static const char dmenufont[] = "monospace:size=10"; +/* static const char col_gray1[] = "#222222"; static const char col_gray2[] = "#444444"; static const char col_gray3[] = "#bbbbbb"; @@ -31,6 +32,10 @@ static const char col3[] = "#ffffff"; static const char col4[] = "#ffffff"; static const char col5[] = "#ffffff"; static const char col6[] = "#ffffff"; +*/ +//#include "themes/dracula.h" +//#include "themes/ocean.h" +#include "themes/onedark.h" enum { SchemeNorm, SchemeCol1, SchemeCol2, SchemeCol3, SchemeCol4, SchemeCol5, SchemeCol6, SchemeSel }; /* color schemes */ @@ -38,12 +43,14 @@ enum { SchemeNorm, SchemeCol1, SchemeCol2, SchemeCol3, SchemeCol4, static const char *colors[][3] = { /* fg bg border */ [SchemeNorm] = { col_gray3, col_gray1, col_gray2 }, + /* [SchemeCol1] = { col1, col_gray1, col_gray2 }, [SchemeCol2] = { col2, col_gray1, col_gray2 }, [SchemeCol3] = { col3, col_gray1, col_gray2 }, [SchemeCol4] = { col4, col_gray1, col_gray2 }, [SchemeCol5] = { col5, col_gray1, col_gray2 }, [SchemeCol6] = { col6, col_gray1, col_gray2 }, + */ [SchemeSel] = { col_gray4, col_cyan, col_cyan }, }; @@ -78,6 +85,8 @@ static const Rule rules[] = { { "st", NULL, NULL, 0, 0, 1, 0, -1 }, { NULL, NULL, "Event Tester", 0, 0, 0, 1, -1 }, /* xev */ { NULL, NULL, "zathura", 0, 0, 0, 1, -1 }, + { "libreoffice", NULL, NULL, 0, 0, 0, 1, -1 }, + //{ "libreoffice-calc", NULL, NULL, 0, 0, 0, 1, -1 }, //{ "pcmanfm", NULL, NULL, 0, 1, 0, 0, -1 }, //{ NULL, NULL, "pcmanfm", 0, 1, 0, 0, -1 }, //{ NULL, NULL, "KeePass", 0, 0, 0, 1, -1 }, diff --git a/themes/darkblue.h b/themes/darkblue.h new file mode 100755 index 0000000..198a551 --- /dev/null +++ b/themes/darkblue.h @@ -0,0 +1,7 @@ +static const char col_gray1[] = "#16161e"; +static const char col_gray2[] = "#b79059"; +static const char col_gray3[] = "#ffffff"; +static const char col_gray4[] = "#16161e"; +static const char col_gray5[] = "#ca6278"; +static const char col_cyan[] = "#68aad2"; + diff --git a/themes/dracula.h b/themes/dracula.h new file mode 100755 index 0000000..2242a75 --- /dev/null +++ b/themes/dracula.h @@ -0,0 +1,7 @@ +static const char col_gray1[] = "#282a36"; +static const char col_gray2[] = "#644475"; +static const char col_gray3[] = "#f8f8f2"; +static const char col_gray4[] = "#282a36"; +static const char col_gray5[] = "#a272a4"; +static const char col_cyan[] = "#bf93f9"; + diff --git a/themes/gruv.h b/themes/gruv.h new file mode 100755 index 0000000..c85896d --- /dev/null +++ b/themes/gruv.h @@ -0,0 +1,6 @@ +static const char col_gray1[] = "#282828"; +static const char col_gray2[] = "#ebdbb2"; +static const char col_gray3[] = "#ebdbb2"; +static const char col_gray4[] = "#282828"; +static const char col_gray5[] = "#8ec07c"; +static const char col_cyan[] = "#d65d0e"; diff --git a/themes/monokai.h b/themes/monokai.h new file mode 100755 index 0000000..4e28b11 --- /dev/null +++ b/themes/monokai.h @@ -0,0 +1,6 @@ +static const char col_gray1[] = "#2D2A2E"; +static const char col_gray2[] = "#78DCE8"; +static const char col_gray3[] = "#ffffff"; +static const char col_gray4[] = "#ffffff"; +static const char col_gray5[] = "#FFD866"; +static const char col_cyan[] = "#F92672"; diff --git a/themes/moonfly.h b/themes/moonfly.h new file mode 100755 index 0000000..c5ee0bb --- /dev/null +++ b/themes/moonfly.h @@ -0,0 +1,6 @@ +static const char col_gray1[] = "#080808"; +static const char col_gray2[] = "#c6c6c6"; +static const char col_gray3[] = "#c6c6c6"; +static const char col_gray4[] = "#080808"; +static const char col_gray5[] = "#79dac8"; +static const char col_cyan[] = "#85dc85"; diff --git a/themes/ocean.h b/themes/ocean.h new file mode 100755 index 0000000..d97d974 --- /dev/null +++ b/themes/ocean.h @@ -0,0 +1,6 @@ +static const char col_gray1[] = "#0F111A"; +static const char col_gray2[] = "#E5E9F0"; +static const char col_gray3[] = "#E5E9F0"; +static const char col_gray4[] = "#E5E9F0"; +static const char col_gray5[] = "#E5E9F0"; +static const char col_cyan[] = "#3A575C"; diff --git a/themes/onedark.h b/themes/onedark.h new file mode 100755 index 0000000..290bb1f --- /dev/null +++ b/themes/onedark.h @@ -0,0 +1,6 @@ +static const char col_gray1[] = "#282C34"; +static const char col_gray2[] = "#ABB2BF"; +static const char col_gray3[] = "#ABB2BF"; +static const char col_gray4[] = "#282C34"; +static const char col_gray5[] = "#c678DD"; +static const char col_cyan[] = "#E06C75"; diff --git a/themes/papercolor.h b/themes/papercolor.h new file mode 100755 index 0000000..c480195 --- /dev/null +++ b/themes/papercolor.h @@ -0,0 +1,6 @@ +static const char col_gray1[] = "#eeeeee"; +static const char col_gray2[] = "#878787"; +static const char col_gray3[] = "#444444"; +static const char col_gray4[] = "#eeeeee"; +static const char col_gray5[] = "#d75f00"; +static const char col_cyan[] = "#d70087"; diff --git a/themes/purple.h b/themes/purple.h new file mode 100755 index 0000000..e69de29 diff --git a/themes/theme.h b/themes/theme.h new file mode 100644 index 0000000..198a551 --- /dev/null +++ b/themes/theme.h @@ -0,0 +1,7 @@ +static const char col_gray1[] = "#16161e"; +static const char col_gray2[] = "#b79059"; +static const char col_gray3[] = "#ffffff"; +static const char col_gray4[] = "#16161e"; +static const char col_gray5[] = "#ca6278"; +static const char col_cyan[] = "#68aad2"; +