diff options
author | Fushihara <1039534+fushihara@users.noreply.github.com> | 2024-09-23 15:19:25 +0900 |
---|---|---|
committer | Fushihara <1039534+fushihara@users.noreply.github.com> | 2024-09-23 15:19:25 +0900 |
commit | ba0c8d73e585d7ff249dd90684254bc7fa025544 (patch) | |
tree | 3b35be04e7bf11eb046246696d45fb8854f01f14 /tailwind.config.ts | |
parent | 41eff0687f69539a514cfa3a28a68f89fc8c54fd (diff) |
commit
Diffstat (limited to 'tailwind.config.ts')
-rw-r--r-- | tailwind.config.ts | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/tailwind.config.ts b/tailwind.config.ts new file mode 100644 index 0000000..021c393 --- /dev/null +++ b/tailwind.config.ts @@ -0,0 +1,19 @@ +import type { Config } from "tailwindcss"; + +const config: Config = { + content: [ + "./src/pages/**/*.{js,ts,jsx,tsx,mdx}", + "./src/components/**/*.{js,ts,jsx,tsx,mdx}", + "./src/app/**/*.{js,ts,jsx,tsx,mdx}", + ], + theme: { + extend: { + colors: { + background: "var(--background)", + foreground: "var(--foreground)", + }, + }, + }, + plugins: [], +}; +export default config; |