forked from lukin/keywind
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.ts
38 lines (36 loc) · 921 Bytes
/
tailwind.config.ts
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
import type { Config } from 'tailwindcss';
import colors from 'tailwindcss/colors';
export default {
darkMode: 'class',
content: ['./theme/**/*.ftl'],
experimental: {
optimizeUniversalDefaults: true,
},
plugins: [require('@tailwindcss/forms')],
theme: {
extend: {
colors: {
primary: colors.blue,
secondary: colors.gray,
provider: {
apple: '#000000',
bitbucket: '#0052CC',
discord: '#5865F2',
facebook: '#1877F2',
github: '#181717',
gitlab: '#FC6D26',
google: '#4285F4',
instagram: '#E4405F',
linkedin: '#0A66C2',
microsoft: '#5E5E5E',
oidc: '#F78C40',
openshift: '#EE0000',
paypal: '#00457C',
slack: '#4A154B',
stackoverflow: '#F58025',
twitter: '#1DA1F2',
},
},
},
},
} satisfies Config;