javascript - 主题更改后 Material Ui 按钮颜色未更改

标签 javascript reactjs material-ui

在react的项目中使用了Material Ui。主题被覆盖,但按钮和输入的颜色没有改变。

这是创建 Material Ui 主题的 theme.js

// @flow
import { createMuiTheme } from '@material-ui/core';

import type
{
  Theme,
} from '@material-ui/core';

const theme: Theme = createMuiTheme({
  palette: {
    primary: {
      main: '#ffa300',
      light: '#ffd449',
      dark: '#c67400',
      contrastText: '#000000',
    },
    secondary: {
      main: '#ff8500',
      light: '#ffb644',
      dark: '#c55600',
      contrastText: '#000000',
    },
    error: {
      main: '#A21C2B',
    },
  },
});


export default theme;

这里是App.js

import React from 'react';
import { ThemeProvider } from '@material-ui/styles';
import CssBaseline from '@material-ui/core/CssBaseline';
import {
  Switch,
} from 'react-router-dom';
import theme from './theme';
import Auth from './Auth';

const App = () => (
  <ThemeProvider theme={theme}>
    <CssBaseline />
    <Switch>
      <Auth />
    </Switch>
  </ThemeProvider>
);

export default App;

请注意新 ThemeProvider 的使用,因为稍后会使用 Hook 。

这是一个示例登录页面

// @flow
import * as React from 'react';
import Avatar from '@material-ui/core/Avatar';
import Button from '@material-ui/core/Button';
import FormControl from '@material-ui/core/FormControl';
import FormControlLabel from '@material-ui/core/FormControlLabel';
import Checkbox from '@material-ui/core/Checkbox';
import Input from '@material-ui/core/Input';
import InputLabel from '@material-ui/core/InputLabel';
import LockIcon from '@material-ui/icons/LockOutlined';
import Paper from '@material-ui/core/Paper';
import Typography from '@material-ui/core/Typography';
import { makeStyles } from '@material-ui/styles';

const useStyles = makeStyles(theme => ({
  main: {
    width: 'auto',
    display: 'block', // Fix IE 11 issue.
    marginLeft: theme.spacing.unit * 3,
    marginRight: theme.spacing.unit * 3,
    [theme.breakpoints.up(400 + theme.spacing.unit * 3 * 2)]: {
      width: 400,
      marginLeft: 'auto',
      marginRight: 'auto',
    },
  },
  paper: {
    marginTop: theme.spacing.unit * 8,
    display: 'flex',
    flexDirection: 'column',
    alignItems: 'center',
    padding: `${theme.spacing.unit * 2}px\
    ${theme.spacing.unit * 3}px\
    ${theme.spacing.unit * 3}px`,
  },
  avatar: {
    margin: theme.spacing.unit,
    backgroundColor: theme.palette.secondary.main,
  },
  form: {
    width: '100%', // Fix IE 11 issue.
    marginTop: theme.spacing.unit,
  },
  submit: {
    marginTop: theme.spacing.unit * 3,
  },
}));

const Login = (props) => {
  const classes = useStyles();

  return (
    <main className={classes.main}>
      <Paper className={classes.paper}>
        <Avatar className={classes.avatar}>
          <LockIcon />
        </Avatar>
        <Typography component="h1" variant="h5">
          Sign in
        </Typography>
        <form className={classes.form}>
          <FormControl margin="normal" required fullWidth>
            <InputLabel htmlFor="email">Email Address</InputLabel>
            <Input id="email" name="email" autoComplete="email" autoFocus />
          </FormControl>
          <FormControl margin="normal" required fullWidth>
            <InputLabel htmlFor="password">Password</InputLabel>
            <Input
              name="password"
              type="password"
              id="password"
              autoComplete="current-password"
            />
          </FormControl>
          <FormControlLabel
            control={<Checkbox value="remember" color="primary" />}
            label="Remember me"
          />
          <Button
            type="submit"
            fullWidth
            variant="contained"
            color="primary"
            className={classes.submit}
          >
            Sign in
          </Button>
        </form>
      </Paper>
    </main>
  );
};

export default Login;

问题就在这里。按钮和输入的颜色没有改变。但是LockIcon的颜色更改为主题提供的颜色。

最佳答案

更新

下面的答案特定于将 @material-ui/styles 与 Material-UI 3.x 版本一起使用。对于 Material-UI v4,不再需要这些安装步骤 (bootstrapMuiStyles.js)。

<小时/>

最初我建议还使用 MuiThemeProvider 进行包装。这可行,但是是错误的解决方案,并且在尝试使用新的 @material-ui/styles 包时可能会导致进一步的问题。根据 Josh Wooding 的评论,然后阅读文档中的详细信息并浏览一些代码,下面是符合 Josh 建议的解决方案。摘录来 self 的 CodeSandbox,因此由于我对您的代码进行的简化/更改(例如不使用类型)以获得工作示例,因此存在一些差异。重要的部分就是 index.jsbootstrapMuiStyles.js —— 特别是导入的顺序。直接从 index.js 导入 install 方法是行不通的,因为这会强制你在已经导入之后调用 install()导入App.js

index.js

import React from "react";
import ReactDOM from "react-dom";
// It is important for this import to be before the import of App
// so that no other Material-UI imports happen before the install
import "./bootstrapMuiStyles";
import App from "./App";

const rootElement = document.getElementById("root");
ReactDOM.render(<App />, rootElement);

bootstrapMuiStyles.js

import { install } from "@material-ui/styles";
install();

App.js

import React from "react";
import { ThemeProvider } from "@material-ui/styles";
import CssBaseline from "@material-ui/core/CssBaseline";
import theme from "./theme";
import Login from "./Login";

const App = () => (
  <ThemeProvider theme={theme}>
    <CssBaseline />
    <Login />
  </ThemeProvider>
);
export default App;

然后 Login.js 几乎是您问题中代码的精确副本。

您可以在这里看到它的工作原理:

Edit mz4q046v0j

关于javascript - 主题更改后 Material Ui 按钮颜色未更改,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54090679/

相关文章:

javascript - HTML/Javascript - 360 度图片的路径更改(以显示不同的变化)

javascript - 菜单 3 级仅水平 HTML/CSS/JavaScript + 推送内容

javascript - 使用 js 滚动的 CSS 动画不起作用

javascript - react native 的按钮文本总是大写

javascript - 符号 '&$checked'是什么意思

javascript - Queryselector 返回 null,不知道为什么

javascript - 同构 Redux React 样板

javascript - 使用 Onclick 打开组件

material-ui - 如何通过主题调色板更改 TextField 下划线悬停颜色?

javascript - 如何从 MUI 数据网格获取过滤值