From 7682c7aea3e71894ee69eb9b3e257d4eb74b8c81 Mon Sep 17 00:00:00 2001 From: Alexey Stepanov Date: Thu, 26 Sep 2024 09:05:37 +0500 Subject: update --- templates/body.mustache | 17 +++++++++++++++++ templates/default.mustache | 27 --------------------------- templates/head.mustache | 11 +++++++++++ 3 files changed, 28 insertions(+), 27 deletions(-) create mode 100644 templates/body.mustache delete mode 100644 templates/default.mustache create mode 100644 templates/head.mustache (limited to 'templates') diff --git a/templates/body.mustache b/templates/body.mustache new file mode 100644 index 0000000..555bbd8 --- /dev/null +++ b/templates/body.mustache @@ -0,0 +1,17 @@ +window { + background-color: #{{base00}}; + border-color: #{{base06}}; +} + +button, +image { + color: #{{base04}}; +} + +button { + color: #eee; +} + +button:hover { + background-color: #{{base07}}; +} diff --git a/templates/default.mustache b/templates/default.mustache deleted file mode 100644 index 753f038..0000000 --- a/templates/default.mustache +++ /dev/null @@ -1,27 +0,0 @@ -/* -* -* system: {{scheme-system}} -* name: {{scheme-name}} -* slug: {{scheme-slug}} -* author: {{scheme-author}} -* variant: {{scheme-variant}} -* -*/ - -window { - background-color: - border-color: -} - -button, -image { - color: -} - -button { - color: -} - -button:hover { - background-color: -} diff --git a/templates/head.mustache b/templates/head.mustache new file mode 100644 index 0000000..086ff69 --- /dev/null +++ b/templates/head.mustache @@ -0,0 +1,11 @@ +/* +* +* name: {{scheme-name}} +* author: {{{scheme-author}}} +* slug: {{scheme-slug}} +* slug-underscored: {{scheme-slug-underscored}} +* system: {{scheme-system}} +* variant: {{scheme-variant}} +* is-{{scheme-variant}}-variant: {{hasVariant}} +* +*/ -- cgit