mirror of
https://iceshrimp.dev/Crimekillz/jointrashposs.git
synced 2024-11-21 16:33:48 +01:00
38 lines
925 B
TypeScript
38 lines
925 B
TypeScript
import type { Config } from "tailwindcss"
|
|
import defaultTheme from "tailwindcss/defaultTheme";
|
|
|
|
export default <Config> {
|
|
content: [
|
|
'./components/**/*.{js,vue,ts}',
|
|
"./layouts/**/*.vue",
|
|
"./pages/**/*.vue",
|
|
"./plugins/**/*.{js,ts}",
|
|
"./nuxt.config.{js,ts}",
|
|
"./app.vue",
|
|
"./error.vue",
|
|
],
|
|
theme: {
|
|
extend: {
|
|
colors: {
|
|
'accent': {
|
|
'50': '#fcffe5',
|
|
'100': '#f6ffc7',
|
|
'200': '#ecff95',
|
|
'300': '#dcfe58',
|
|
'400': '#c9f526',
|
|
'500': '#aadc06',
|
|
'600': '#86b300',
|
|
'700': '#638506',
|
|
'800': '#4f690b',
|
|
'900': '#42580f',
|
|
'950': '#223201',
|
|
},
|
|
},
|
|
},
|
|
fontFamily: {
|
|
'sans': ['Nunito', 'GenJyuuGothicX', ...defaultTheme.fontFamily.sans],
|
|
'content-sans': ['Nunito', 'GenJyuuGothicXP', ...defaultTheme.fontFamily.sans],
|
|
}
|
|
},
|
|
plugins: [],
|
|
} |