2024-03-14 01:12:48 +00:00
|
|
|
/** @type {import('tailwindcss').Config} */
|
|
|
|
module.exports = {
|
2024-03-14 20:39:26 +00:00
|
|
|
content: ["**/*.templ", "**/*.go"],
|
2024-03-15 03:56:49 +00:00
|
|
|
safelist: [
|
|
|
|
{
|
2024-03-15 17:55:28 +00:00
|
|
|
pattern: /list-image-(accepted|informational|never|possible)/,
|
2024-03-15 03:56:49 +00:00
|
|
|
},
|
|
|
|
{
|
2024-03-15 17:55:28 +00:00
|
|
|
pattern: /[a-z]+-(uiblue|uired|uigreen|uiyellow|uiorange)-[0-9]+/
|
2024-03-15 03:56:49 +00:00
|
|
|
},
|
|
|
|
],
|
2024-03-14 01:12:48 +00:00
|
|
|
theme: {
|
2024-03-14 04:21:01 +00:00
|
|
|
extend: {
|
|
|
|
listStyleImage: {
|
2024-03-14 07:54:41 +00:00
|
|
|
never: 'url("/static/icons/list-never.svg")',
|
|
|
|
accepted: 'url("/static/icons/list-accepted.svg")',
|
|
|
|
possible: 'url("/static/icons/list-possible.svg")',
|
|
|
|
informational: 'url("/static/icons/list-informational.svg")',
|
|
|
|
},
|
|
|
|
content: {
|
|
|
|
link: 'url("/static/icons/link.svg")',
|
2024-03-14 04:21:01 +00:00
|
|
|
},
|
2024-03-15 17:55:28 +00:00
|
|
|
colors: {
|
|
|
|
'uiblue': {
|
|
|
|
50: '#eff2f8',
|
|
|
|
100: '#dee6f2',
|
|
|
|
200: '#becce4',
|
|
|
|
300: '#9db3d7',
|
|
|
|
400: '#7d99c9',
|
|
|
|
500: '#5c80bc',
|
|
|
|
600: '#4a6696',
|
|
|
|
700: '#374d71',
|
|
|
|
800: '#25334b',
|
|
|
|
900: '#121a26',
|
|
|
|
},
|
|
|
|
'uired': {
|
|
|
|
50: '#fbe9ef',
|
|
|
|
100: '#f7d2de',
|
|
|
|
200: '#efa5bd',
|
|
|
|
300: '#e8789d',
|
|
|
|
400: '#e04b7c',
|
|
|
|
500: '#d81e5b',
|
|
|
|
600: '#ad1849',
|
|
|
|
700: '#821237',
|
|
|
|
800: '#560c24',
|
|
|
|
900: '#2b0612',
|
|
|
|
},
|
|
|
|
'uigreen': {
|
|
|
|
50: '#f5f9f5',
|
|
|
|
100: '#ebf2ec',
|
|
|
|
200: '#d8e5d8',
|
|
|
|
300: '#c4d9c5',
|
|
|
|
400: '#b1ccb1',
|
|
|
|
500: '#9dbf9e',
|
|
|
|
600: '#7e997e',
|
|
|
|
700: '#5e735f',
|
|
|
|
800: '#3f4c3f',
|
|
|
|
900: '#1f2620',
|
|
|
|
},
|
|
|
|
'uiyellow': {
|
|
|
|
50: '#fffff5',
|
|
|
|
100: '#ffffea',
|
|
|
|
200: '#fffed6',
|
|
|
|
300: '#fffec1',
|
|
|
|
400: '#fffdad',
|
|
|
|
500: '#fffd98',
|
|
|
|
600: '#ccca7a',
|
|
|
|
700: '#99985b',
|
|
|
|
800: '#66653d',
|
|
|
|
900: '#33331e',
|
|
|
|
},
|
|
|
|
'uiorange': {
|
|
|
|
50: '#f9f3ef',
|
|
|
|
100: '#f2e8df',
|
|
|
|
200: '#e5d0bf',
|
|
|
|
300: '#d8b9a0',
|
|
|
|
400: '#cba180',
|
|
|
|
500: '#be8a60',
|
|
|
|
600: '#986e4d',
|
|
|
|
700: '#72533a',
|
|
|
|
800: '#4c3726',
|
|
|
|
900: '#261c13',
|
|
|
|
},
|
|
|
|
},
|
2024-03-14 04:21:01 +00:00
|
|
|
},
|
2024-03-14 01:12:48 +00:00
|
|
|
},
|
2024-03-14 07:54:41 +00:00
|
|
|
plugins: [
|
|
|
|
require('@tailwindcss/forms'),
|
|
|
|
],
|
2024-03-14 01:12:48 +00:00
|
|
|
}
|
|
|
|
|