forked from Playabl-io/playabl
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
47 lines (46 loc) · 1.25 KB
/
tailwind.config.js
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
35
36
37
38
39
40
41
42
43
44
45
46
47
const plugin = require("tailwindcss/plugin");
const defaultTheme = require("tailwindcss/defaultTheme");
module.exports = {
darkMode: "class",
mode: "jit",
content: ["./index.html", "./src/**/*.{vue,ts}"],
theme: {
extend: {
colors: {
brand: {
100: "#E6E0E8",
200: "#CFC4E1",
300: "#B8A9DA",
400: "#A18ED3",
500: "#4622B8",
},
},
fontFamily: {
sans: [...defaultTheme.fontFamily.sans],
openSans: "'Open Sans', sans-serif",
spartan: "'Spartan', sans-serif",
paytone: "'Paytone', sans-serif",
},
},
},
plugins: [
require("@tailwindcss/aspect-ratio"),
require("@tailwindcss/typography"),
require("@tailwindcss/forms"),
plugin(function ({ addVariant, e, postcss }) {
addVariant("firefox", ({ container, separator }) => {
const isFirefoxRule = postcss.atRule({
name: "-moz-document",
params: "url-prefix()",
});
isFirefoxRule.append(container.nodes);
container.append(isFirefoxRule);
isFirefoxRule.walkRules((rule) => {
rule.selector = `.${e(
`firefox${separator}${rule.selector.slice(1)}`
)}`;
});
});
}),
],
};