forked from lukin/keywind
-
Notifications
You must be signed in to change notification settings - Fork 1
/
tailwind.config.ts
40 lines (38 loc) · 1 KB
/
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
39
40
import type { Config } from 'tailwindcss';
import colors from 'tailwindcss/colors';
export default {
content: ['./theme/**/*.ftl'],
experimental: {
optimizeUniversalDefaults: true,
},
plugins: [require('@tailwindcss/forms')],
theme: {
extend: {
backgroundImage: {
'custom-pattern': "url('/theme/keywind/login/resources/keep-background.jpeg')",
},
colors: {
primary: colors.orange,
secondary: colors.orange,
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;