Add alt2 text color (#794)
This commit is contained in:
parent
31beae1783
commit
999e0637f2
|
@ -53,6 +53,7 @@ export const Table = (args) => (
|
|||
{Row("text-main")}
|
||||
{Row("text-muted")}
|
||||
{Row("text-contrast")}
|
||||
{Row("text-alt2")}
|
||||
</tbody>
|
||||
</table>
|
||||
);
|
||||
|
|
|
@ -27,6 +27,7 @@
|
|||
--color-text-main: #212529;
|
||||
--color-text-muted: #6d757e;
|
||||
--color-text-contrast: #ffffff;
|
||||
--color-text-alt2: #ffffff;
|
||||
|
||||
--tw-ring-offset-color: #fff;
|
||||
}
|
||||
|
@ -64,6 +65,7 @@
|
|||
--color-text-main: #ffffff;
|
||||
--color-text-muted: #bac0ce;
|
||||
--color-text-contrast: #191e26;
|
||||
--color-text-alt2: #ffffff;
|
||||
|
||||
--tw-ring-offset-color: #1f242e;
|
||||
}
|
||||
|
|
|
@ -41,6 +41,7 @@ module.exports = {
|
|||
main: "var(--color-text-main)",
|
||||
muted: "var(--color-text-muted)",
|
||||
contrast: "var(--color-text-contrast)",
|
||||
alt2: "var(--color-text-alt2)",
|
||||
},
|
||||
background: {
|
||||
DEFAULT: "var(--color-background)",
|
||||
|
@ -52,6 +53,7 @@ module.exports = {
|
|||
main: "var(--color-text-main)",
|
||||
muted: "var(--color-text-muted)",
|
||||
contrast: "var(--color-text-contrast)",
|
||||
alt2: "var(--color-text-alt2)",
|
||||
success: "var(--color-success-500)",
|
||||
danger: "var(--color-danger-500)",
|
||||
warning: "var(--color-warning-500)",
|
||||
|
|
Loading…
Reference in New Issue