PluginProbe
Simple Analytics / 1.110
Simple Analytics v1.110
1.110 1.109 1.108 1.107 1.106 1.73 1.74 1.75 1.76 1.77 1.78 1.79 1.8 1.80 1.81 1.82 1.83 1.84 1.85 1.86 1.87 1.88 1.89 1.9 1.90 All 99 releases
← All changes | tailwind.config.js +11 -16 1.741.110 View file →
@@ -1,28 +1,23 @@
1 -import defaultTheme from 'tailwindcss/defaultTheme';
2 -import forms from '@tailwindcss/forms'
1 +import defaultTheme from "tailwindcss/defaultTheme";
2 +import forms from "@tailwindcss/forms";
3 3
4 4 /** @type {import('tailwindcss').Config} */
5 5 module.exports = {
6 - content: [
7 - './**/*.php',
8 - ],
6 + content: ["./**/*.php"],
9 7 theme: {
10 8 extend: {
11 9 colors: {
12 - primary: '#FF4F64',
13 - primaryBg: '#eef9ff',
14 - littleMuted: '#68797b',
10 + primary: "#FF4F64",
11 + primaryBg: "#eef9ff",
12 + littleMuted: "#68797b",
15 13 },
16 14 fontFamily: {
17 - sans: ['Space Grotesk', ...defaultTheme.fontFamily.sans],
15 + sans: ["Space Grotesk", ...defaultTheme.fontFamily.sans],
18 16 },
19 17 borderWidth: {
20 - 3: '3px',
21 - }
18 + 3: "3px",
19 + },
22 20 },
23 21 },
24 - plugins: [
25 - forms(),
26 - ],
27 -}
28 -
22 + plugins: [forms()],
23 +};