initial release
This commit is contained in:
37
tailwind.config.ts
Normal file
37
tailwind.config.ts
Normal file
@@ -0,0 +1,37 @@
|
||||
import type { Config } from 'tailwindcss';
|
||||
import colors from 'tailwindcss/colors';
|
||||
|
||||
export default {
|
||||
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;
|
||||
Reference in New Issue
Block a user