initial release

This commit is contained in:
2024-02-29 15:32:49 -06:00
commit 566453191d
116 changed files with 8575 additions and 0 deletions

37
tailwind.config.ts Normal file
View 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;