From 4e9f6391b9227efd29786211b3da2732b74319c7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jos=C3=A9=20Luis=20Pereira?= Date: Tue, 16 Aug 2022 13:36:53 -0300 Subject: [PATCH] Update default configuration --- config/header.yml | 4 ++-- config/style/theme.css | 27 +++++++++++++++++++++++++++ config/vendor/tailwind.config.js | 2 +- 3 files changed, 30 insertions(+), 3 deletions(-) create mode 100644 config/style/theme.css diff --git a/config/header.yml b/config/header.yml index 22018dc..3b77b0b 100644 --- a/config/header.yml +++ b/config/header.yml @@ -1,6 +1,6 @@ --- - logo_url: - links: + header_logo_url: + header_links: - label: Home link: / diff --git a/config/style/theme.css b/config/style/theme.css new file mode 100644 index 0000000..0e13edb --- /dev/null +++ b/config/style/theme.css @@ -0,0 +1,27 @@ +:root { + --color-primary: 0, 0, 0; + --color-primary-content: 255, 255, 255; + + --color-secondary: 14, 165, 233; + --color-secondary-content: 255, 255, 255; + + --color-base-foreground: 255, 255, 255; + --color-base-background: 245, 247, 251; + --color-base-200: 226, 232, 240; + --color-base-300: 203, 213, 225; + --color-base-content: 0, 0, 0; +} + +.dark { + --color-primary: 14, 165, 233; + --color-primary-content: 255, 255, 255; + + --color-secondary: 14, 165, 233; + --color-secondary-content: 255, 255, 255; + + --color-base-background: 23,23,23; + --color-base-foreground: 38,38,38; + --color-base-200: 30, 41, 59; + --color-base-300: 30, 41, 59; + --color-base-content: 255, 255, 255; +} diff --git a/config/vendor/tailwind.config.js b/config/vendor/tailwind.config.js index e56c9cb..5e5c87d 100644 --- a/config/vendor/tailwind.config.js +++ b/config/vendor/tailwind.config.js @@ -1,5 +1,5 @@ module.exports = { presets: [ - require(__basedir + '/tailwind.config.js') + require(__tailwindCSSTaxonPagesConfigPath) ] }