This project is a fork of estevanmaito/tailwindcss-multi-theme.
Please read the docs of the parent repository.
WARNING: this plugin is designed for Tailwind v3!
- Additional features
- π Get started
- πΉοΈ Usage
- π€ Contribute
- /β\ Roadmap
- β Authors
- π License
- 𧬠Changelog
Based on the original version of estevanmaito/tailwindcss-multi-theme plugin, this following has been added:
- migrate to [email protected]
- plugin now accepts options
- support for special characters in theme name
Just install the plugin in your awesome tailwindcss project:
npm install -D @hperchec/tailwindcss-multi-themeIn tailwind.config.js add themeVariants to the theme property, with the value(s) of your theme(s), and use the plugin. That's it.
// tailwind.config.js
import multiThemePlugin from '@hperchec/tailwindcss-multi-theme'
export default {
darkMode: 'false', // β See the note below
theme: {
themeVariants: [
// Define themes here
'light',
'dark',
'banana'
],
extend: {
colors: {
// Here you can add your theme specific colors...
}
}
},
plugins: [
// Multi-theme plugin
multiThemePlugin(),
// ...
]
}It will create a set of classes based on your variants and expect a class .theme-<the name of your themeVariants> at the top of your HTML document.
For example, you can set attribute class="theme-banana" to the <html> element to apply banana theme. In that case, an element with banana:bg-yellow-200 will have a yellow background.
IMPORTANT: While a custom theme name like "banana" will not cause conflicts in the generated CSS, you probably want to define "dark" theme, for which Tailwind provide support. Since this plugin allows you to manage a wide variety of themes, if you want to automatically apply a dark theme base on user preference, i recommend you to disable the dark mode in your
tailwind.config.js:darkMode: 'false'and manually apply the corresponding theme in your JavaScript code (see good practices section)
| name | type | default |
|---|---|---|
| themeClassPrefix | String |
'theme-' |
Example:
// tailwind.config.js
plugins: [
multiThemePlugin({
/**
* Overwrite default theme class name themeClassPrefix
* It will generate:
* - 'light' class instead of 'theme-light'
* - 'dark' class instead of 'theme-dark'
* - 'banana' class instead of 'theme-banana'
* - ...
*/
themeClassPrefix: ''
}),
// ...
],You can use special characters in your theme names (see also CSS specification or this topic).
Example:
Here, we add @ prefix to the theme names to easily identify theme in class names:
// tailwind.config.js
import multiThemePlugin from '@hperchec/tailwindcss-multi-theme'
export default {
darkMode: 'false',
theme: {
themeVariants: [
// Define themes here
'@light',
'@dark',
'@banana'
],
extend: {
colors: {
'@light-alabaster': '#FAFAFA',
'@dark-tuna': '#36393F',
'@banana-sandy-yellow': '#FFEA78',
// and other theme colors...
}
}
},
plugins: [
// Multi-theme plugin
multiThemePlugin({
themeClassPrefix: ''
}),
// ...
]
}In this example, it will generate:
- class names:
@light,@dark,@banana(e.g. set attributeclass="@light"to the<html>element to apply light theme) - tailwind variants:
@light,@dark,@banana(e.g. set class@dark:hover:bg-redto apply a red background on hover for dark theme)
Here some good practices I recommend to follow
You should use something like a <select> and a short JavaScript code to switch between your themes:
<select id="theme-select">
<option value="light">Light</option>
<option value="dark">Dark</option>
<option value="banana">Banana</option>
</select>let currentTheme
/**
* Switch to the given theme by setting the corresponding class on <html> element
* @param {string} theme - The theme to switch to
*/
function switchToTheme (theme) {
// Remove the old class
document.documentElement.classList.remove(`theme-@${currentTheme}`)
// Set the new theme
currentTheme = theme
// Add new class on <html> element
document.documentElement.classList.add(`theme-@${currentTheme}`)
}
window.onload = function () {
// Add listener of change event to apply theme with the select
document.getElementById('theme-select').onchange = function (e) {
switchToTheme(e.target.value)
}
}If you want to automatically apply a light or dark theme based on user preference, you can do it like:
window.onload = function () {
if (!!window.matchMedia && window.matchMedia('(prefers-color-scheme: dark)').matches) {
switchToTheme('dark')
} else {
switchToTheme('light')
}
// Add listener of change event to apply theme with the select
document.getElementById('theme-select').onchange = function (e) {
switchToTheme(e.target.value)
}
}It's suggested to define your theme colors in a separated file (for example ./themes.js in your project):
TIP: you can use a tool like color-name-finder to name your colors correctly
// Example: themes.js
const commonColors = {
// primary, secondary, etc... should be the same for all themes
"primary": "#3B68CF",
"secondary": "#36393F",
// ...
}
export default {
themes: {
// 'light' theme specific colors
'light': {
...commonColors,
'alabaster': '#FAFAFA',
'text-primary': '#191919'
},
// 'dark' theme specific colors
'dark': {
...commonColors,
'tuna': '#36393F',
'text-primary': '#F9F9F9'
},
// 'banana' theme specific colors
'banana': {
...commonColors,
'sandy-yellow': '#FFEA78',
'text-primary': '#121212'
}
}
}Then you can dynamically set in tailwind.config.js:
// Example: tailwind.config.js
import multiThemePlugin from '@hperchec/tailwindcss-multi-theme'
import themes from './themes.js'
export default {
darkMode: 'false',
theme: {
themeVariants: [
/**
* It will generate theme names:
* - '@light'
* - '@dark'
* - '@banana'
*/
...Object.keys(themes).map((theme) => {
return `@${theme}`
})
],
extend: {
colors: {
/**
* It will generate colors:
* - '@light-primary'
* - '@light-secondary'
* - '@light-alabaster'
* - '@light-text-primary'
* - '@dark-primary'
* - '@dark-secondary'
* - '@dark-tuna'
* - '@dark-text-primary'
* - '@banana-primary'
* - '@banana-secondary'
* - '@banana-sandy-yellow'
* - '@banana-text-primary'
*/
...Object.keys(themes).reduce((colors, themeName) => {
// Loop on theme colors
for (const color in themes[themeName]) {
const colorName = `@${themeName}-${color}`
const colorValue = themes[themeName][color]
obj[colorName] = colorValue
}
return obj
}, {})
}
}
},
plugins: [
// Multi-theme plugin
multiThemePlugin({
themeClassPrefix: ''
}),
// ...
],
//...
}So, you can use the generated theme colors:
<!--
Example: apply a background color and a text color to the <body> element
depending on what theme is applied
-->
<body
class="
@light:bg-@light-alabaster
@light:text-@light-text-primary
@dark:bg-@dark-tuna
@dark:text-@dark-text-primary
@banana:bg-@banana-sandy-yellow
@banana:text-@banana-text-primary
"
>
...
</body>OR (in style):
body {
// 'light' theme rules
@apply @light:bg-@light-alabaster;
@apply @light:text-@light-text-primary;
// 'dark' theme rules
@apply @dark:bg-@dark-tuna;
@apply @dark:text-@dark-text-primary;
// 'banana' theme rules
@apply @banana:bg-@banana-sandy-yellow;
@apply @banana:text-@banana-text-primary;
}You can take a look at the examples in the ./examples folder.
See the CONTRIBUTING.md file.
- Rewrite examples
- Migrate from jest to vitest for tests
MIT
See all changes to this project in the CHANGELOG.md file.
Made with β€ by Estevan Maito & HervΓ© Perchec
README.md - this file was auto generated with juisy README templater. Don't edit it.