diff --git a/bun.lockb b/bun.lockb index f4bcfbe..7a30f98 100755 Binary files a/bun.lockb and b/bun.lockb differ diff --git a/tailwind.config.ts b/tailwind.config.ts index 107ced6..f074d99 100644 --- a/tailwind.config.ts +++ b/tailwind.config.ts @@ -1,7 +1,17 @@ import type { Config } from 'tailwindcss' +import colors from 'tailwindcss/colors' export default >{ theme: { + colors: { + transparent: 'transparent', + current: 'currentColor', + black: colors.black, + white: colors.white, + gray: colors.gray, + red: colors.red, + green: colors.green, + }, extend: { colors: { cerise: { @@ -17,7 +27,6 @@ export default >{ 900: '#851653', 950: '#52052f', }, - }, }, },