fix: fixing button color text on dark mode

This commit is contained in:
Caio Cabral
2024-12-02 19:14:26 -05:00
parent 8e831bdb65
commit a4d64d8e05
3 changed files with 5 additions and 2 deletions

View File

@@ -1,4 +1,4 @@
import React, { useState } from "react";
import { useState } from "react";
import PropTypes from "prop-types";
import { useNavigate } from "react-router";
import { useSelector } from "react-redux";

View File

@@ -206,12 +206,14 @@ const semanticColors = {
light: {
light: paletteColors.gray200,
dark: paletteColors.gray800,
/* TODO this should live in a different key (border.disabled.light and .dark) */
disabled: paletteColors.gray150,
},
dark: {
light: paletteColors.gray200,
dark: paletteColors.gray750,
disabled: paletteColors.gray800,
/* TODO this should live in a different key (border.disabled.light and .dark) */
disabled: paletteColors.gray150,
},
},
unresolved: {

View File

@@ -28,6 +28,7 @@ const {
} = colors;
const palette = {
/* TODO check if we need the addition of a new color gray150 for this. Also, this color would probably fit for primary contrastText */
action: {
disabled: border.light.disabled,
},