keywind/tailwind.config.ts

38 lines
900 B
TypeScript
Raw Permalink Normal View History

2023-09-23 20:00:00 +00:00
import type { Config } from 'tailwindcss';
import colors from 'tailwindcss/colors';
2021-07-05 11:40:00 +00:00
2023-09-23 20:00:00 +00:00
export default {
2021-12-13 17:50:00 +00:00
content: ['./theme/**/*.ftl'],
experimental: {
optimizeUniversalDefaults: true,
},
2021-07-05 11:40:00 +00:00
plugins: [require('@tailwindcss/forms')],
theme: {
extend: {
colors: {
primary: colors.blue,
secondary: colors.gray,
2022-10-16 14:00:00 +00:00
provider: {
apple: '#000000',
2022-10-16 14:00:00 +00:00
bitbucket: '#0052CC',
discord: '#5865F2',
2022-10-16 14:00:00 +00:00
facebook: '#1877F2',
github: '#181717',
gitlab: '#FC6D26',
google: '#4285F4',
instagram: '#E4405F',
linkedin: '#0A66C2',
microsoft: '#5E5E5E',
oidc: '#F78C40',
openshift: '#EE0000',
paypal: '#00457C',
slack: '#4A154B',
2022-10-16 14:00:00 +00:00
stackoverflow: '#F58025',
twitter: '#1DA1F2',
},
2021-07-05 11:40:00 +00:00
},
},
},
2023-09-23 20:00:00 +00:00
} satisfies Config;