From 0397311f6e471efeb0e82d4829e54529e2eafd2d Mon Sep 17 00:00:00 2001 From: moanos Date: Thu, 20 Mar 2025 18:58:32 +0100 Subject: [PATCH] feat: Add bulma and base for bulma styleguide --- .../fellchensammlung/css/bulma-styles.css | 24 +++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 src/fellchensammlung/static/fellchensammlung/css/bulma-styles.css diff --git a/src/fellchensammlung/static/fellchensammlung/css/bulma-styles.css b/src/fellchensammlung/static/fellchensammlung/css/bulma-styles.css new file mode 100644 index 0000000..27158a7 --- /dev/null +++ b/src/fellchensammlung/static/fellchensammlung/css/bulma-styles.css @@ -0,0 +1,24 @@ +/***************/ +/* MAIN COLORS */ +/***************/ + +:root { + --primary-light-one: #5daa68; + --primary-light-two: #4a9455; + --primary-semidark-one: #356c3c; + --primary-dark-one: #17311b; + --secondary-light-one: #faf1cf; + --secondary-light-two: #e1d7b5; + --background-one: var(--primary-light-one); + --background-two: var(--primary-light-two); + --background-three: var(--secondary-light-one); + --background-four: var(--primary-dark-one); + --highlight-one: var(--primary-dark-one); + --highlight-one-text: var(--secondary-light-one); + --highlight-two: var(--primary-semidark-one); + --text-one: var(--secondary-light-one); + --shadow-one: var(--primary-dark-one); + --text-two: var(--primary-dark-one); + --text-three: var(--primary-light-one); + --shadow-three: var(--primary-dark-one); +}