diff options
| author | stkhan <personal@slickd.xyz> | 2021-05-22 22:15:27 +0000 |
|---|---|---|
| committer | stkhan <personal@slickd.xyz> | 2021-05-22 22:15:27 +0000 |
| commit | cb40be2023b0dbb3f0fe4b9f952c2417e88eeabd (patch) | |
| tree | 7a87c0db5bbc8c33227d5b3e5ce66e3ef580ece2 /themes | |
| parent | 70ff4a524e92b0680a8d52b3c6dd0d7bf49dae8b (diff) | |
added Dracula theme
Diffstat (limited to 'themes')
| -rw-r--r-- | themes/theme.h | 4 | ||||
| -rw-r--r-- | themes/themes/dracula | 16 |
2 files changed, 18 insertions, 2 deletions
diff --git a/themes/theme.h b/themes/theme.h index ae77542..f4ad3e3 100644 --- a/themes/theme.h +++ b/themes/theme.h @@ -6,11 +6,11 @@ /* primary color */ -static const char col_cyan[] = "#5e81ac"; +static const char col_cyan[] = "#6272a4"; /* secondary colors */ -static const char col_gray1[] = "#2e3440"; +static const char col_gray1[] = "#282a36"; static const char col_gray2[] = "#444444"; static const char col_gray3[] = "#bbbbbb"; static const char col_gray4[] = "#eeeeee"; diff --git a/themes/themes/dracula b/themes/themes/dracula new file mode 100644 index 0000000..f4ad3e3 --- /dev/null +++ b/themes/themes/dracula @@ -0,0 +1,16 @@ +/* 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"; |