Skip to content

Commit 6d91a9f

Browse files
feat: move all white colors to accent text colors
1 parent af36601 commit 6d91a9f

File tree

6 files changed

+10
-10
lines changed

6 files changed

+10
-10
lines changed

src/components/base/BaseNavigateSection.vue

+4-4
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,7 @@ $icon-size: 28px;
110110
border-radius: 6px;
111111

112112
#{$c}__icon-inner {
113-
fill: rgb(var(--color-white));
113+
fill: rgb(var(--color-accent-text));
114114
}
115115
}
116116

@@ -137,7 +137,7 @@ $icon-size: 28px;
137137
}
138138

139139
#{$c}__arrow {
140-
fill: rgb(var(--color-white));
140+
fill: rgb(var(--color-accent-text));
141141
margin-inline-start: 8px;
142142
flex: 0 0 auto;
143143
visibility: hidden;
@@ -183,11 +183,11 @@ $icon-size: 28px;
183183

184184
#{$c}__text {
185185
#{$c}__text-title {
186-
color: rgb(var(--color-text-reverse));
186+
color: rgb(var(--color-accent-text));
187187
}
188188

189189
#{$c}__text-label {
190-
color: rgba(var(--color-text-reverse), 0.7);
190+
color: rgba(var(--color-accent-text), 0.7);
191191
}
192192
}
193193

src/components/base/BasePresence.vue

+2-2
Original file line numberDiff line numberDiff line change
@@ -172,15 +172,15 @@ $availabilities: (
172172
}
173173

174174
&#{$c}--active {
175-
background-color: rgb(var(--color-white));
175+
background-color: rgb(var(--color-accent-text));
176176
}
177177
}
178178
}
179179

180180
// --> BOOLEANS <--
181181

182182
&--active {
183-
border-color: rgb(var(--color-white));
183+
border-color: rgb(var(--color-accent-text));
184184
}
185185

186186
&--hide-offline {

src/components/form/FormFieldSuggest.vue

+1-1
Original file line numberDiff line numberDiff line change
@@ -329,7 +329,7 @@ $suggest-sizes: (
329329

330330
#{$c}__link-icon {
331331
&:is(svg) {
332-
fill: rgb(var(--color-white));
332+
fill: rgb(var(--color-accent-text));
333333
}
334334
}
335335
}

src/components/sidebar/SidebarMainItemGeneric.vue

+1-1
Original file line numberDiff line numberDiff line change
@@ -232,7 +232,7 @@ $c: ".c-sidebar-main-item-generic";
232232
&--active {
233233
#{$c}__draft,
234234
#{$c}__error {
235-
fill: rgb(var(--color-white));
235+
fill: rgb(var(--color-accent-text));
236236
}
237237
}
238238
}

src/components/sidebar/SidebarMainItemUser.vue

+1-1
Original file line numberDiff line numberDiff line change
@@ -191,7 +191,7 @@ $composing-dot-size: 3px;
191191
&--active {
192192
#{$c}__composing {
193193
#{$c}__composing-dot {
194-
background-color: rgb(var(--color-white));
194+
background-color: rgb(var(--color-accent-text));
195195
}
196196
}
197197
}

src/components/spotlight/browse/SpotlightBrowseNavigate.vue

+1-1
Original file line numberDiff line numberDiff line change
@@ -142,7 +142,7 @@ $c: ".c-spotlight-browse-navigate";
142142

143143
&--active {
144144
#{$c}__section-icon {
145-
fill: rgb(var(--color-white));
145+
fill: rgb(var(--color-accent-text));
146146
}
147147
}
148148
}

0 commit comments

Comments
 (0)