@ramdasiakshay01/tailwind-config 2.0.2 → 2.0.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +20 -0
- package/package.json +1 -1
package/README.md
ADDED
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
# Design System Integration
|
|
2
|
+
|
|
3
|
+
This project utilizes a shared Tailwind configuration and design tokens hosted in the \`@ramdasiakshay01/tailwind-config\` package.
|
|
4
|
+
|
|
5
|
+
## Setup
|
|
6
|
+
|
|
7
|
+
1. **Installation**
|
|
8
|
+
\`\`\`bash
|
|
9
|
+
npm install @ramdasiakshay01/tailwind-config
|
|
10
|
+
\`\`\`
|
|
11
|
+
|
|
12
|
+
2. **Integration**
|
|
13
|
+
Add the following import at the top of your main CSS file (e.g., \`src/styles/globals.css\`) to inherit the design system:
|
|
14
|
+
|
|
15
|
+
\`\`\`css
|
|
16
|
+
@import '@ramdasiakshay01/tailwind-config';
|
|
17
|
+
\`\`\`
|
|
18
|
+
|
|
19
|
+
---
|
|
20
|
+
*Note: Ensure your build system supports CSS imports from node_modules.*
|