@abumble/design-system 0.0.41 → 0.0.43

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.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/src/styles.css +7 -5
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@abumble/design-system",
3
- "version": "0.0.41",
3
+ "version": "0.0.43",
4
4
  "files": [
5
5
  "dist",
6
6
  "src/styles.css",
package/src/styles.css CHANGED
@@ -1,5 +1,7 @@
1
1
  @import 'tailwindcss';
2
2
  @import 'tw-animate-css';
3
+ @import './themes/linen.css';
4
+ @import './themes/steel.css';
3
5
 
4
6
  @tailwind base;
5
7
  @tailwind components;
@@ -119,24 +121,24 @@
119
121
  }
120
122
 
121
123
  .sub-heading {
122
- @apply mt-8 mb-1 font-semibold text-gray-900;
124
+ @apply mt-8 mb-1 font-semibold text-foreground;
123
125
  }
124
126
 
125
127
  .p-text {
126
- @apply leading-relaxed text-gray-900;
128
+ @apply leading-relaxed text-foreground;
127
129
  }
128
130
 
129
131
  .text-link {
130
- @apply text-blue-600 hover:text-blue-800 visited:text-blue-900;
132
+ @apply text-primary hover:text-primary/80 visited:text-primary/60;
131
133
  }
132
134
 
133
135
  .nav-link {
134
- @apply relative block px-3 py-2 transition text-gray-700 hover:text-gray-950;
136
+ @apply relative block px-3 py-2 transition text-muted-foreground hover:text-foreground;
135
137
  }
136
138
 
137
139
  .nav-link:hover,
138
140
  .nav-link-active {
139
- @apply text-gray-950 transition duration-200;
141
+ @apply text-foreground transition duration-200;
140
142
  }
141
143
 
142
144
  body {