-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathtailwind.config.js
More file actions
37 lines (36 loc) · 947 Bytes
/
tailwind.config.js
File metadata and controls
37 lines (36 loc) · 947 Bytes
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
const colors = require('tailwindcss/colors');
const plugin = require('tailwindcss/plugin');
const forms = require('@tailwindcss/forms');
const loadingState = require('./src/loading');
const transition = require('./src/transition');
module.exports = {
content: [
'fohn-ui-default/**/*.txt',
'../fohn-ui/template/tailwind/**/*.html',
'../fohn-ui/src/**/*.php',
'../fohn-js/src/**/*.{html,js,vue}',
'../fohn-ui/app-test/**/*.{html,php,txt}',
],
theme: {
colors: {
transparent: 'transparent',
current: 'currentColor',
black: colors.black,
white: colors.white,
gray: colors.neutral,
purple: colors.purple,
pink: colors.pink,
green: colors.green,
blue: colors.blue,
yellow: colors.amber,
red: colors.red,
primary: colors.purple,
surface: colors.slate,
}
},
plugins: [
plugin(loadingState),
plugin(transition),
forms,
],
}