PluginProbe
Simple Analytics / 1.26
Simple Analytics v1.26
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 1.91 All 98 releases
simpleanalytics / tailwind.config.js

tailwind.config.js in Simple Analytics 1.26, at tailwind.config.js

29 lines 624 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 import defaultTheme from 'tailwindcss/defaultTheme';
2 import forms from '@tailwindcss/forms'
3
4 /** @type {import('tailwindcss').Config} */
5 module.exports = {
6 content: [
7 './**/*.php',
8 ],
9 theme: {
10 extend: {
11 colors: {
12 primary: '#FF4F64',
13 primaryBg: '#eef9ff',
14 littleMuted: '#68797b',
15 },
16 fontFamily: {
17 sans: ['Space Grotesk', ...defaultTheme.fontFamily.sans],
18 },
19 borderWidth: {
20 3: '3px',
21 }
22 },
23 },
24 plugins: [
25 forms(),
26 ],
27 }
28
29