-
Notifications
You must be signed in to change notification settings - Fork 1
/
tailwind.config.mjs
34 lines (30 loc) · 1.01 KB
/
tailwind.config.mjs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
/** @type {Config} */
/** @typedef {import('rippleui').Config} Config */
/** @typedef {import('tailwindcss').Config} Config */
const {
iconsPlugin,
getIconCollections,
} = require("@egoist/tailwindcss-icons");
export default {
content: ["./src/**/*.{astro,html,js,jsx,md,mdx,svelte,ts,tsx,vue}"],
theme: {
extend: {},
},
plugins: [
require("@tailwindcss/forms"),
require('rippleui'),
iconsPlugin({
// Select the icon collections you want to use
// You can also ignore this option to automatically discover all individual icon packages you have installed
// If you install @iconify/json, you should explicitly specify the collections you want to use, like this:
collections: getIconCollections(["mdi", "hugeicons"]),
// If you want to use all icons from @iconify/json, you can do this:
// collections: getIconCollections("all"),
// and the more recommended way is to use `dynamicIconsPlugin`, see below.
}),
],
/** @type {Config} */
rippleui: {
removeThemes: ["light", "dark"],
},
};