Skip to content

Commit

Permalink
Update default configuration
Browse files Browse the repository at this point in the history
  • Loading branch information
José Luis Pereira committed Aug 16, 2022
1 parent dc86ae0 commit 4e9f639
Show file tree
Hide file tree
Showing 3 changed files with 30 additions and 3 deletions.
4 changes: 2 additions & 2 deletions config/header.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---
logo_url:
links:
header_logo_url:
header_links:
- label: Home
link: /

Expand Down
27 changes: 27 additions & 0 deletions config/style/theme.css
Original file line number Diff line number Diff line change
@@ -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;
}
2 changes: 1 addition & 1 deletion config/vendor/tailwind.config.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
module.exports = {
presets: [
require(__basedir + '/tailwind.config.js')
require(__tailwindCSSTaxonPagesConfigPath)
]
}

0 comments on commit 4e9f639

Please sign in to comment.