mirror of
https://github.com/we-promise/sure.git
synced 2026-04-08 14:54:49 +00:00
* Adjust color styles for checkboxes and text utilities Updated checkbox hover and checked states for light and dark themes, including background and SVG fill colors. Modified text and foreground utility classes to use different gray shades in dark mode for improved contrast and consistency. * Update selection bar and checkbox styles Refines the selection bar appearance by updating its background, border, and text color classes. Adjusts the checkbox to use the light variant and improves disabled and checked state styles in the design system CSS, including correcting SVG fill colors for checkboxes.
39 lines
520 B
CSS
39 lines
520 B
CSS
@utility text-primary {
|
|
@apply text-gray-900;
|
|
|
|
@variant theme-dark {
|
|
@apply text-white;
|
|
}
|
|
}
|
|
|
|
@utility text-inverse {
|
|
@apply text-white;
|
|
|
|
@variant theme-dark {
|
|
@apply text-gray-900;
|
|
}
|
|
}
|
|
|
|
@utility text-secondary {
|
|
@apply text-gray-500;
|
|
|
|
@variant theme-dark {
|
|
@apply text-gray-300;
|
|
}
|
|
}
|
|
|
|
@utility text-subdued {
|
|
@apply text-gray-400;
|
|
|
|
@variant theme-dark {
|
|
@apply text-gray-500;
|
|
}
|
|
}
|
|
|
|
@utility text-link {
|
|
@apply text-blue-600;
|
|
|
|
@variant theme-dark {
|
|
@apply text-blue-500;
|
|
}
|
|
} |