mirror of
https://github.com/maybe-finance/maybe.git
synced 2025-07-19 13:19:39 +02:00
63 lines
840 B
CSS
63 lines
840 B
CSS
|
@utility fg-gray {
|
||
|
@apply text-gray-500;
|
||
|
|
||
|
@variant theme-dark {
|
||
|
@apply text-gray-400;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
@utility fg-contrast {
|
||
|
@apply text-gray-400;
|
||
|
|
||
|
@variant theme-dark {
|
||
|
@apply text-gray-500;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
@utility fg-inverse {
|
||
|
@apply text-white;
|
||
|
|
||
|
@variant theme-dark {
|
||
|
@apply text-gray-900;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
@utility fg-primary {
|
||
|
@apply text-gray-900;
|
||
|
|
||
|
@variant theme-dark {
|
||
|
@apply text-white;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
@utility fg-primary-variant {
|
||
|
@apply text-gray-800;
|
||
|
|
||
|
@variant theme-dark {
|
||
|
@apply text-gray-50;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
@utility fg-secondary {
|
||
|
@apply text-gray-50;
|
||
|
|
||
|
@variant theme-dark {
|
||
|
@apply text-gray-700;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
@utility fg-secondary-variant {
|
||
|
@apply text-gray-100;
|
||
|
|
||
|
@variant theme-dark {
|
||
|
@apply text-gray-600;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
@utility fg-subdued {
|
||
|
@apply text-gray-400;
|
||
|
|
||
|
@variant theme-dark {
|
||
|
@apply text-gray-500;
|
||
|
}
|
||
|
}
|