first commit
This commit is contained in:
14
packages/tailwind-config/package.json
Normal file
14
packages/tailwind-config/package.json
Normal file
@@ -0,0 +1,14 @@
|
||||
{
|
||||
"name": "@repo/tailwind-config",
|
||||
"version": "0.0.0",
|
||||
"type": "module",
|
||||
"private": true,
|
||||
"exports": {
|
||||
".": "./shared-styles.css",
|
||||
"./postcss": "./postcss.config.js"
|
||||
},
|
||||
"devDependencies": {
|
||||
"postcss": "^8.5.3",
|
||||
"tailwindcss": "^4.1.5"
|
||||
}
|
||||
}
|
||||
6
packages/tailwind-config/postcss.config.js
Normal file
6
packages/tailwind-config/postcss.config.js
Normal file
@@ -0,0 +1,6 @@
|
||||
// Optional PostCSS configuration for applications that need it
|
||||
export const postcssConfig = {
|
||||
plugins: {
|
||||
"@tailwindcss/postcss": {},
|
||||
},
|
||||
};
|
||||
7
packages/tailwind-config/shared-styles.css
Normal file
7
packages/tailwind-config/shared-styles.css
Normal file
@@ -0,0 +1,7 @@
|
||||
@import "tailwindcss";
|
||||
|
||||
@theme {
|
||||
--blue-1000: #2a8af6;
|
||||
--purple-1000: #a853ba;
|
||||
--red-1000: #e92a67;
|
||||
}
|
||||
Reference in New Issue
Block a user