Coercivity / RollGO

3 stars 0 forks source link

Выбор цветовой схемы приложения #29

Closed slavoyar closed 10 months ago

slavoyar commented 10 months ago

Создать тему для Material UI.

slavoyar commented 10 months ago
 export const themeOptions: ThemeOptions = {
  palette: {
    type: 'dark',
    primary: {
      main: '#1D1D1D',
      contrastText: '#FFB370',
      light: '#7b7a7a',
    },
    secondary: {
      main: '#C96915',
    },
    background: {
      default: '#0d0d0d',
      paper: '#1d1d1d',
    },
    text: {
      primary: '#C96915',
      secondary: '#c96915',
    },
    warning: {
      main: '#ff9800',
    },
  },
};

image

CookLe123 commented 10 months ago
import { ThemeOptions } from '@material-ui/core/styles/createMuiTheme';

export const themeOptions: ThemeOptions = {
  palette: {
    type: 'light',
    primary: {
      main: '#1D1D1D',
      contrastText: '#FFB370',
      light: '#7b7a7a',
      dark: '#000000',
    },
    secondary: {
      main: '#C96915',
    },
    background: {
      default: '#202020',
      paper: '#1d1d1d',
    },
    text: {
      primary: '#C96915',
      secondary: '#c96915',
      disabled: 'rgba(218,24,24,0.38)',
      hint: 'rgba(255,0,0,0.38)',
    },
    warning: {
      main: '#ff9800',
    },
  },
};

image https://coolors.co/palette/0d0d0d-1d1d1d-202020-4b331e-75451b-9f5718-c96915-ffb370