実行中マテリアルUI1.0.0-beta.24
createMuiTheme
を使用して新しいテーマを設定しています:
import {createMuiTheme} from 'material-ui/styles';
const theme = createMuiTheme({
typography: {
fontSize: 16
}
});
export default theme;
ここで直接オーバーライドしているテーマにアクセスするにはどうすればよいですか?私はこれをしたいのですが、機能していません:
import {createMuiTheme} from 'material-ui/styles';
const theme = createMuiTheme({
typography: {
fontSize: theme.typography.fontSize + 2
}
});
export default theme;
デフォルトのテーマのインスタンスを作成し、独自のテーマを定義するときにそれを使用する必要があります。
import { createMuiTheme } from 'material-ui/styles';
const defaultTheme = createMuiTheme();
const theme = createMuiTheme({
typography: {
fontSize: defaultTheme.typography.fontSize + 2
}
});
export default theme;
テーマを作成し、theme
の作成後にテーマに追加することもできます。
import { createMuiTheme } from 'material-ui/styles';
const theme = createMuiTheme();
theme.typography = {
fontSize: theme.typography.fontSize + 2
}
export default theme;