Skip to content

Commit

Permalink
fix docusaurus change taiwind styles no-release docker-false
Browse files Browse the repository at this point in the history
  • Loading branch information
caioricciuti committed Oct 6, 2024
1 parent 677a28c commit 8979970
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 6 deletions.
6 changes: 3 additions & 3 deletions docs/src/css/custom.css
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
/* You can override the default Infima variables here. */
:root {
--ifm-color-primary: #f97316;
--ifm-color-primary-dark: #ea6806;
--ifm-color-primary-dark: #f97316;
--ifm-color-primary-darker: #dd6305;
--ifm-color-primary-darkest: #b65104;
--ifm-color-primary-light: #fa8534;
Expand All @@ -23,8 +23,8 @@

/* For readability concerns, you should choose a lighter palette in dark mode. */
[data-theme="dark"] {
--ifm-color-primary: #fba66a;
--ifm-color-primary-dark: #fa9149;
--ifm-color-primary: #f97316;
--ifm-color-primary-dark: #f97316;
--ifm-color-primary-darker: #fa8639;
--ifm-color-primary-darkest: #f86a07;
--ifm-color-primary-light: #fcbb8b;
Expand Down
5 changes: 2 additions & 3 deletions docs/tailwind.config.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module.exports = {
content: [
"./src/**/*.{js,jsx,ts,tsx}",
"./src/components/**/*.{js,jsx,ts,tsx}",
"./docusaurus.config.js",
"./src/pages/**/*.{js,jsx,ts,tsx}",
],
Expand All @@ -9,6 +9,5 @@ module.exports = {
},
plugins: [],
corePlugins: { preflight: false },
darkMode: ['class', '[data-theme="dark"]'],

darkMode: ["class", '[data-theme="dark"]'],
};

0 comments on commit 8979970

Please sign in to comment.