我想在自己的材料ui主题中使用不同的已定义颜色阴影。我只定义主要颜色:
A obj =new A();
obj.SetA();
System.out.println(obj.a);
对于某些用例,我需要主色其他色标的十六进制值。如何将自动生成的const theme = createMuiTheme({
palette: {
primary: {
main: "#C5FFA1",
},
变量返回的rgb(...)
值转换为十六进制代码?我找不到任何解决方案。
primary.dark
返回此
import { useTheme } from '@material-ui/core/styles';
const theme = useTheme();
console.log(theme.palette.primary.main);
console.log(theme.palette.primary.dark);
但是我需要这个:
#D6F0FF
rgb(149, 168, 178)
答案 0 :(得分:0)
我认为不是primary.main尝试仅将primary设置为
primary:"#C5FFA1"