Skip to content

Commit 5fd3b02

Browse files
author
Justin Kimbrell
committed
ci: release
1 parent 5d5fb93 commit 5fd3b02

File tree

14 files changed

+1111
-624
lines changed

14 files changed

+1111
-624
lines changed

.changeset/lemon-mice-brush.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
"@vue-interface/btn": patch
3+
---
4+
5+
Fixed some minor inconsistencies with custom variation text colors

.changeset/open-ants-notice.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
"@vue-interface/pagination": major
3+
---
4+
5+
Removed the Pagination.vue component and made this a pure Tailwind CSS utility

packages/btn/src/colors.css

Lines changed: 27 additions & 27 deletions
Original file line numberDiff line numberDiff line change
@@ -45,8 +45,8 @@
4545
--text-for-gray-100: var(--color-black, black);
4646
--text-for-gray-200: var(--color-black, black);
4747
--text-for-gray-300: var(--color-black, black);
48-
--text-for-gray-400: var(--color-black, white);
49-
--text-for-gray-500: var(--color-black, white);
48+
--text-for-gray-400: var(--color-white, white);
49+
--text-for-gray-500: var(--color-white, white);
5050
--text-for-gray-600: var(--color-white, white);
5151
--text-for-gray-700: var(--color-white, white);
5252
--text-for-gray-800: var(--color-white, white);
@@ -58,8 +58,8 @@
5858
--text-for-slate-100: var(--color-black, black);
5959
--text-for-slate-200: var(--color-black, black);
6060
--text-for-slate-300: var(--color-black, black);
61-
--text-for-slate-400: var(--color-black, white);
62-
--text-for-slate-500: var(--color-black, white);
61+
--text-for-slate-400: var(--color-white, white);
62+
--text-for-slate-500: var(--color-white, white);
6363
--text-for-slate-600: var(--color-white, white);
6464
--text-for-slate-700: var(--color-white, white);
6565
--text-for-slate-800: var(--color-white, white);
@@ -71,8 +71,8 @@
7171
--text-for-zinc-100: var(--color-black, black);
7272
--text-for-zinc-200: var(--color-black, black);
7373
--text-for-zinc-300: var(--color-black, black);
74-
--text-for-zinc-400: var(--color-black, white);
75-
--text-for-zinc-500: var(--color-black, white);
74+
--text-for-zinc-400: var(--color-white, white);
75+
--text-for-zinc-500: var(--color-white, white);
7676
--text-for-zinc-600: var(--color-white, white);
7777
--text-for-zinc-700: var(--color-white, white);
7878
--text-for-zinc-800: var(--color-white, white);
@@ -84,8 +84,8 @@
8484
--text-for-neutral-100: var(--color-black, black);
8585
--text-for-neutral-200: var(--color-black, black);
8686
--text-for-neutral-300: var(--color-black, black);
87-
--text-for-neutral-400: var(--color-black, white);
88-
--text-for-neutral-500: var(--color-black, white);
87+
--text-for-neutral-400: var(--color-white, white);
88+
--text-for-neutral-500: var(--color-white, white);
8989
--text-for-neutral-600: var(--color-white, white);
9090
--text-for-neutral-700: var(--color-white, white);
9191
--text-for-neutral-800: var(--color-white, white);
@@ -97,8 +97,8 @@
9797
--text-for-stone-100: var(--color-black, black);
9898
--text-for-stone-200: var(--color-black, black);
9999
--text-for-stone-300: var(--color-black, black);
100-
--text-for-stone-400: var(--color-black, white);
101-
--text-for-stone-500: var(--color-black, white);
100+
--text-for-stone-400: var(--color-white, white);
101+
--text-for-stone-500: var(--color-white, white);
102102
--text-for-stone-600: var(--color-white, white);
103103
--text-for-stone-700: var(--color-white, white);
104104
--text-for-stone-800: var(--color-white, white);
@@ -123,7 +123,7 @@
123123
--text-for-orange-100: var(--color-black, black);
124124
--text-for-orange-200: var(--color-black, black);
125125
--text-for-orange-300: var(--color-black, black);
126-
--text-for-orange-400: var(--color-black, white);
126+
--text-for-orange-400: var(--color-white, white);
127127
--text-for-orange-500: var(--color-white, white);
128128
--text-for-orange-600: var(--color-white, white);
129129
--text-for-orange-700: var(--color-white, white);
@@ -136,8 +136,8 @@
136136
--text-for-amber-100: var(--color-black, black);
137137
--text-for-amber-200: var(--color-black, black);
138138
--text-for-amber-300: var(--color-black, black);
139-
--text-for-amber-400: var(--color-black, white);
140-
--text-for-amber-500: var(--color-black, white);
139+
--text-for-amber-400: var(--color-white, white);
140+
--text-for-amber-500: var(--color-white, white);
141141
--text-for-amber-600: var(--color-white, white);
142142
--text-for-amber-700: var(--color-white, white);
143143
--text-for-amber-800: var(--color-white, white);
@@ -149,8 +149,8 @@
149149
--text-for-yellow-100: var(--color-black, black);
150150
--text-for-yellow-200: var(--color-black, black);
151151
--text-for-yellow-300: var(--color-black, black);
152-
--text-for-yellow-400: var(--color-black, white);
153-
--text-for-yellow-500: var(--color-black, white);
152+
--text-for-yellow-400: var(--color-white, white);
153+
--text-for-yellow-500: var(--color-white, white);
154154
--text-for-yellow-600: var(--color-white, white);
155155
--text-for-yellow-700: var(--color-white, white);
156156
--text-for-yellow-800: var(--color-white, white);
@@ -162,8 +162,8 @@
162162
--text-for-lime-100: var(--color-black, black);
163163
--text-for-lime-200: var(--color-black, black);
164164
--text-for-lime-300: var(--color-black, black);
165-
--text-for-lime-400: var(--color-black, white);
166-
--text-for-lime-500: var(--color-black, white);
165+
--text-for-lime-400: var(--color-white, white);
166+
--text-for-lime-500: var(--color-white, white);
167167
--text-for-lime-600: var(--color-white, white);
168168
--text-for-lime-700: var(--color-white, white);
169169
--text-for-lime-800: var(--color-white, white);
@@ -175,8 +175,8 @@
175175
--text-for-green-100: var(--color-black, black);
176176
--text-for-green-200: var(--color-black, black);
177177
--text-for-green-300: var(--color-black, black);
178-
--text-for-green-400: var(--color-black, white);
179-
--text-for-green-500: var(--color-black, white);
178+
--text-for-green-400: var(--color-white, white);
179+
--text-for-green-500: var(--color-white, white);
180180
--text-for-green-600: var(--color-white, white);
181181
--text-for-green-700: var(--color-white, white);
182182
--text-for-green-800: var(--color-white, white);
@@ -188,8 +188,8 @@
188188
--text-for-emerald-100: var(--color-black, black);
189189
--text-for-emerald-200: var(--color-black, black);
190190
--text-for-emerald-300: var(--color-black, black);
191-
--text-for-emerald-400: var(--color-black, white);
192-
--text-for-emerald-500: var(--color-black, white);
191+
--text-for-emerald-400: var(--color-white, white);
192+
--text-for-emerald-500: var(--color-white, white);
193193
--text-for-emerald-600: var(--color-white, white);
194194
--text-for-emerald-700: var(--color-white, white);
195195
--text-for-emerald-800: var(--color-white, white);
@@ -201,8 +201,8 @@
201201
--text-for-teal-100: var(--color-black, black);
202202
--text-for-teal-200: var(--color-black, black);
203203
--text-for-teal-300: var(--color-black, black);
204-
--text-for-teal-400: var(--color-black, white);
205-
--text-for-teal-500: var(--color-black, white);
204+
--text-for-teal-400: var(--color-white, white);
205+
--text-for-teal-500: var(--color-white, white);
206206
--text-for-teal-600: var(--color-white, white);
207207
--text-for-teal-700: var(--color-white, white);
208208
--text-for-teal-800: var(--color-white, white);
@@ -214,8 +214,8 @@
214214
--text-for-cyan-100: var(--color-black, black);
215215
--text-for-cyan-200: var(--color-black, black);
216216
--text-for-cyan-300: var(--color-black, black);
217-
--text-for-cyan-400: var(--color-black, white);
218-
--text-for-cyan-500: var(--color-black, white);
217+
--text-for-cyan-400: var(--color-white, white);
218+
--text-for-cyan-500: var(--color-white, white);
219219
--text-for-cyan-600: var(--color-white, white);
220220
--text-for-cyan-700: var(--color-white, white);
221221
--text-for-cyan-800: var(--color-white, white);
@@ -227,8 +227,8 @@
227227
--text-for-sky-100: var(--color-black, black);
228228
--text-for-sky-200: var(--color-black, black);
229229
--text-for-sky-300: var(--color-black, black);
230-
--text-for-sky-400: var(--color-black, white);
231-
--text-for-sky-500: var(--color-black, white);
230+
--text-for-sky-400: var(--color-white, white);
231+
--text-for-sky-500: var(--color-white, white);
232232
--text-for-sky-600: var(--color-white, white);
233233
--text-for-sky-700: var(--color-white, white);
234234
--text-for-sky-800: var(--color-white, white);

0 commit comments

Comments
 (0)