diff options
Diffstat (limited to 'hipis/packages/source/hwp/hwp/ui.scm')
-rw-r--r-- | hipis/packages/source/hwp/hwp/ui.scm | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/hipis/packages/source/hwp/hwp/ui.scm b/hipis/packages/source/hwp/hwp/ui.scm new file mode 100644 index 0000000..ec11a31 --- /dev/null +++ b/hipis/packages/source/hwp/hwp/ui.scm | |||
@@ -0,0 +1,17 @@ | |||
1 | (define-module (hwp ui) | ||
2 | #:use-module (srfi srfi-9)) | ||
3 | |||
4 | (define-record-type <theme-configuration> | ||
5 | (make-theme-configuration primary-color | ||
6 | secondary-color) | ||
7 | theme-configuration? | ||
8 | (primary-color theme-configuration-primary-color) | ||
9 | (secondary-color theme-configuration-secondary-color)) | ||
10 | |||
11 | |||
12 | (define* (theme-configuration #:key | ||
13 | (primary-color "#000") | ||
14 | (secondary-color "#111")) | ||
15 | (make-theme-configuration primary-color | ||
16 | secondary-color)) | ||
17 | |||