From 3b852e0f10892789210fd8e3fdd8415faf3cf2d8 Mon Sep 17 00:00:00 2001 From: stkhan Date: Sun, 17 Oct 2021 18:43:19 -0500 Subject: 3.0 --- theme/blue/blue.png | Bin 0 -> 3000322 bytes theme/blue/colors.h | 51 ++++++++++++++++++++++++++++ theme/dracula/colors.h | 53 ++++++++++++++++++++++++++++++ theme/dracula/dracula.png | Bin 0 -> 348137 bytes theme/green/colors.h | 50 ++++++++++++++++++++++++++++ theme/green/green.png | Bin 0 -> 2806111 bytes theme/purple/colors.h | 51 ++++++++++++++++++++++++++++ theme/purple/purple.png | Bin 0 -> 1570213 bytes theme/purple_mountain/colors.h | 40 ++++++++++++++++++++++ theme/purple_mountain/purple_mountain.png | Bin 0 -> 4401519 bytes theme/purple_mountain/screenshot.png | Bin 0 -> 2603 bytes theme/red/colors.h | 50 ++++++++++++++++++++++++++++ theme/red/red.png | Bin 0 -> 1744142 bytes 13 files changed, 295 insertions(+) create mode 100644 theme/blue/blue.png create mode 100644 theme/blue/colors.h create mode 100644 theme/dracula/colors.h create mode 100644 theme/dracula/dracula.png create mode 100644 theme/green/colors.h create mode 100644 theme/green/green.png create mode 100644 theme/purple/colors.h create mode 100644 theme/purple/purple.png create mode 100644 theme/purple_mountain/colors.h create mode 100644 theme/purple_mountain/purple_mountain.png create mode 100644 theme/purple_mountain/screenshot.png create mode 100644 theme/red/colors.h create mode 100644 theme/red/red.png (limited to 'theme') diff --git a/theme/blue/blue.png b/theme/blue/blue.png new file mode 100644 index 0000000..0920b93 Binary files /dev/null and b/theme/blue/blue.png differ diff --git a/theme/blue/colors.h b/theme/blue/colors.h new file mode 100644 index 0000000..648208b --- /dev/null +++ b/theme/blue/colors.h @@ -0,0 +1,51 @@ +/* Sarc config file */ + +/* + * DWM CONFIGURATION +*/ + +/* primary color */ + +static const char col_cyan[] = "#0a0063"; + +/* secondary colors */ + +static const char col_gray1[] = "#222222"; +static const char col_gray2[] = "#444444"; +static const char col_gray3[] = "#bbbbbb"; +static const char col_gray4[] = "#eeeeee"; + +/* st config */ + +float alpha = 0.6; + + +static const char *colorname[] = { + /* 8 normal colors */ + "black", + "red3", + "green3", + "yellow3", + "blue2", + "magenta3", + "cyan3", + "gray90", + + /* 8 bright colors */ + "gray50", + "red", + "green", + "yellow", + "#5c5cff", + "magenta", + "cyan", + "white", + + [255] = 0, + + /* more colors can be added after 255 to use with DefaultXX */ + "#cccccc", + "#555555", + "#000000", /* 258 -> bg */ + "#cfcfcf", /* 259 -> fg */ +}; diff --git a/theme/dracula/colors.h b/theme/dracula/colors.h new file mode 100644 index 0000000..f7353de --- /dev/null +++ b/theme/dracula/colors.h @@ -0,0 +1,53 @@ +/* Sarc config file */ + +/* + * DWM CONFIGURATION +*/ + +/* primary color */ + +static const char col_cyan[] = "#6272a4"; + +/* secondary colors */ + +static const char col_gray1[] = "#282a36"; +static const char col_gray2[] = "#444444"; +static const char col_gray3[] = "#bbbbbb"; +static const char col_gray4[] = "#eeeeee"; + +/* st config */ + +float alpha = 0.9; + + +static const char *colorname[] = { + /* 8 normal colors */ + "#000000", + "#ff5555", + "#50fa7b", + "#f1fa8c", + "#bd93f9", + "#ff79c6", + "#8be9fd", + "#bfbfbf", + + /* 8 bright colors */ + "#4d4d4d", + "#ff6e67", + "#5af78e", + "#f4f99d", + "#caa9fa", + "#ff92d0", + "#9aedfe", + "#e6e6e6", + + [255] = 0, + + /* more colors can be added after 255 to use with DefaultXX */ + "#cccccc", + "#555555", + "#282a36", /* 258 -> bg */ + "#f8f8f2", /* 259 -> fg */ +}; + + diff --git a/theme/dracula/dracula.png b/theme/dracula/dracula.png new file mode 100644 index 0000000..19bf67e Binary files /dev/null and b/theme/dracula/dracula.png differ diff --git a/theme/green/colors.h b/theme/green/colors.h new file mode 100644 index 0000000..1c182f6 --- /dev/null +++ b/theme/green/colors.h @@ -0,0 +1,50 @@ +/* Sarc config file */ + +/* + * DWM CONFIGURATION +*/ + +/* primary color */ + +static const char col_cyan[] = "#00731f"; + +/* secondary colors */ + +static const char col_gray1[] = "#222222"; +static const char col_gray2[] = "#444444"; +static const char col_gray3[] = "#bbbbbb"; +static const char col_gray4[] = "#eeeeee"; + +/* st config */ + +float alpha = 0.6; + +static const char *colorname[] = { + /* 8 normal colors */ + "black", + "red3", + "green3", + "yellow3", + "blue2", + "magenta3", + "cyan3", + "gray90", + + /* 8 bright colors */ + "gray50", + "red", + "green", + "yellow", + "#5c5cff", + "magenta", + "cyan", + "white", + + [255] = 0, + + /* more colors can be added after 255 to use with DefaultXX */ + "#cccccc", + "#555555", + "#000000", /* 258 -> bg */ + "#cfcfcf", /* 259 -> fg */ +}; diff --git a/theme/green/green.png b/theme/green/green.png new file mode 100644 index 0000000..111ffe1 Binary files /dev/null and b/theme/green/green.png differ diff --git a/theme/purple/colors.h b/theme/purple/colors.h new file mode 100644 index 0000000..c2e1c75 --- /dev/null +++ b/theme/purple/colors.h @@ -0,0 +1,51 @@ +/* Sarc config file */ + +/* + * DWM CONFIGURATION +*/ + +/* primary color */ + +static const char col_cyan[] = "#8c0180"; + +/* secondary colors */ + +static const char col_gray1[] = "#222222"; +static const char col_gray2[] = "#444444"; +static const char col_gray3[] = "#bbbbbb"; +static const char col_gray4[] = "#eeeeee"; + + +/* st config */ + +float alpha = 0.6; + +static const char *colorname[] = { + /* 8 normal colors */ + "black", + "red3", + "green3", + "yellow3", + "blue2", + "magenta3", + "cyan3", + "gray90", + + /* 8 bright colors */ + "gray50", + "red", + "green", + "yellow", + "#5c5cff", + "magenta", + "cyan", + "white", + + [255] = 0, + + /* more colors can be added after 255 to use with DefaultXX */ + "#cccccc", + "#555555", + "#000000", /* 258 -> bg */ + "#cfcfcf", /* 259 -> fg */ +}; diff --git a/theme/purple/purple.png b/theme/purple/purple.png new file mode 100644 index 0000000..f0e89e8 Binary files /dev/null and b/theme/purple/purple.png differ diff --git a/theme/purple_mountain/colors.h b/theme/purple_mountain/colors.h new file mode 100644 index 0000000..8026ee1 --- /dev/null +++ b/theme/purple_mountain/colors.h @@ -0,0 +1,40 @@ +/* dwm color configuration */ +static const char col_gray1[] = "#222222"; +static const char col_gray2[] = "#444444"; +static const char col_gray3[] = "#bbbbbb"; +static const char col_gray4[] = "#eeeeee"; +static const char col_cyan[] = "#4B4E74"; + +/* st config */ + +float alpha = 0.6; /* some themes may have this lighter or stronger then others */ + +static const char *colorname[] = { + /* 8 normal colors */ + "#050704", /* black */ + "#d80e0e", /* red */ + "#06f115", /* green */ + "#d8ff00", /* yellow */ + "#0050d2", /* blue */ + "#802bee", /* magenta */ + "#23f0f2", /* cyan */ + "#cfcfcf", /* white */ + + /* 8 bright colors */ + "#cfcfcf", /* black */ + "#ff2857", /* red */ + "#79fc6a", /* green */ + "#d7ff62", /* yellow */ + "#698eff", /* blue */ + "#a461fb", /* magenta */ + "#91fff5", /* cyan */ + "#ffffff", /* white */ + + [255] = 0, + + /* special colors */ + "#cccccc", + "#555555", + "#000000", /* background */ + "#cfcfcf", /* foreground */ +}; diff --git a/theme/purple_mountain/purple_mountain.png b/theme/purple_mountain/purple_mountain.png new file mode 100644 index 0000000..21efd79 Binary files /dev/null and b/theme/purple_mountain/purple_mountain.png differ diff --git a/theme/purple_mountain/screenshot.png b/theme/purple_mountain/screenshot.png new file mode 100644 index 0000000..c377fc2 Binary files /dev/null and b/theme/purple_mountain/screenshot.png differ diff --git a/theme/red/colors.h b/theme/red/colors.h new file mode 100644 index 0000000..e46a25c --- /dev/null +++ b/theme/red/colors.h @@ -0,0 +1,50 @@ +/* Sarc config file */ + +/* + * DWM CONFIGURATION +*/ + +/* primary color */ + +static const char col_cyan[] = "#bf0d00"; + +/* secondary colors */ + +static const char col_gray1[] = "#222222"; +static const char col_gray2[] = "#444444"; +static const char col_gray3[] = "#bbbbbb"; +static const char col_gray4[] = "#eeeeee"; + +/* st config */ + +float alpha = 0.6; + +static const char *colorname[] = { + /* 8 normal colors */ + "black", + "red3", + "green3", + "yellow3", + "blue2", + "magenta3", + "cyan3", + "gray90", + + /* 8 bright colors */ + "gray50", + "red", + "green", + "yellow", + "#5c5cff", + "magenta", + "cyan", + "white", + + [255] = 0, + + /* more colors can be added after 255 to use with DefaultXX */ + "#cccccc", + "#555555", + "#000000", /* 258 -> bg */ + "#cfcfcf", /* 259 -> fg */ +}; diff --git a/theme/red/red.png b/theme/red/red.png new file mode 100644 index 0000000..4cc72e2 Binary files /dev/null and b/theme/red/red.png differ -- cgit v1.2.3