diff options
| author | stkhan <personal@slickd.xyz> | 2021-10-17 18:43:19 -0500 |
|---|---|---|
| committer | stkhan <personal@slickd.xyz> | 2021-10-17 18:43:19 -0500 |
| commit | 3b852e0f10892789210fd8e3fdd8415faf3cf2d8 (patch) | |
| tree | 9ff20de62f5e354926a5aed15b3f99c0dbd5cd63 /theme | |
| parent | cc844e1931ba6f4c417ea8682f5cfa72ef5e4fec (diff) | |
3.0
Diffstat (limited to 'theme')
| -rw-r--r-- | theme/blue/blue.png | bin | 0 -> 3000322 bytes | |||
| -rw-r--r-- | theme/blue/colors.h | 51 | ||||
| -rw-r--r-- | theme/dracula/colors.h | 53 | ||||
| -rw-r--r-- | theme/dracula/dracula.png | bin | 0 -> 348137 bytes | |||
| -rw-r--r-- | theme/green/colors.h | 50 | ||||
| -rw-r--r-- | theme/green/green.png | bin | 0 -> 2806111 bytes | |||
| -rw-r--r-- | theme/purple/colors.h | 51 | ||||
| -rw-r--r-- | theme/purple/purple.png | bin | 0 -> 1570213 bytes | |||
| -rw-r--r-- | theme/purple_mountain/colors.h | 40 | ||||
| -rw-r--r-- | theme/purple_mountain/purple_mountain.png | bin | 0 -> 4401519 bytes | |||
| -rw-r--r-- | theme/purple_mountain/screenshot.png | bin | 0 -> 2603 bytes | |||
| -rw-r--r-- | theme/red/colors.h | 50 | ||||
| -rw-r--r-- | theme/red/red.png | bin | 0 -> 1744142 bytes |
13 files changed, 295 insertions, 0 deletions
diff --git a/theme/blue/blue.png b/theme/blue/blue.png Binary files differnew file mode 100644 index 0000000..0920b93 --- /dev/null +++ b/theme/blue/blue.png 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 Binary files differnew file mode 100644 index 0000000..19bf67e --- /dev/null +++ b/theme/dracula/dracula.png 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 Binary files differnew file mode 100644 index 0000000..111ffe1 --- /dev/null +++ b/theme/green/green.png 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 Binary files differnew file mode 100644 index 0000000..f0e89e8 --- /dev/null +++ b/theme/purple/purple.png 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 Binary files differnew file mode 100644 index 0000000..21efd79 --- /dev/null +++ b/theme/purple_mountain/purple_mountain.png diff --git a/theme/purple_mountain/screenshot.png b/theme/purple_mountain/screenshot.png Binary files differnew file mode 100644 index 0000000..c377fc2 --- /dev/null +++ b/theme/purple_mountain/screenshot.png 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 Binary files differnew file mode 100644 index 0000000..4cc72e2 --- /dev/null +++ b/theme/red/red.png |