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