-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Install tailwind and catppuccin (#1)
* Install tailwind and init * configure template path * add tailwind directives to main css * Add catppuccin theme * Add tailwind's generated css to app.js * Add catppuccin's base class to the document body * Add catppuccin plugin to tailwind config * import tailwind generated css in index.js instead of app.js * tailwind imports moved to index.css * Add appropriate classes to body tag
- Loading branch information
1 parent
f5a8543
commit 6dbf9cd
Showing
5 changed files
with
60 additions
and
8 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
/** @type {import('tailwindcss').Config} */ | ||
module.exports = { | ||
content: [ | ||
"./src/**/*.{html,js}", | ||
], | ||
theme: { | ||
extend: {}, | ||
}, | ||
plugins: [ | ||
require("@catppuccin/tailwindcss")({ | ||
defaultFlavour: "macchiato" | ||
}), | ||
], | ||
} | ||
|