如何将自定义字体添加到样式组件中的主题提供者?
How to add a custom font to the themeprovider in styled components?
我正在使用 material-ui 样式组件和 TypeScript 构建一个 React 应用程序。
我正在尝试将自定义字体与我的样式组件一起使用,但我很难让它正常工作。
我做的第一件事是创建了一个 globalStyles.ts
文件 createGlobalStyle
:
import { createGlobalStyle } from "styled-components";
export const theme = {
primaryBlue: "#0794B4",
secondaryBlue: "#043157",
primaryWhite: "#fff"
};
const GlobalStyle = createGlobalStyle`
@font-face {
font-family: pala;
src: url("./assets/pala.ttf") format('truetype');
font-weight: normal;
font-style: normal;
}
html {
font-size: 10px;
}
`;
export default GlobalStyle;
我在我的应用程序中添加了 ThemeProvider
和 GlobalStyle
:
import React, { Component } from "react";
import "./App.css";
import NavBar from "./components/NavBar";
import { ThemeProvider } from "styled-components";
import GlobalStyle, { theme } from "./globalStyles";
class App extends Component {
render() {
return (
<ThemeProvider theme={theme}>
<div className="App-header">
<NavBar title="MyCompany" />
<GlobalStyle />
</div>
</ThemeProvider>
);
}
}
export default App;
然后我尝试在我的样式组件中使用这种字体:
import React, { PureComponent } from "react";
import styled from "styled-components";
import AppBar from "@material-ui/core/AppBar";
import Toolbar from "@material-ui/core/Toolbar";
import Typography from "@material-ui/core/Typography";
export const StyledAppBar = styled(AppBar)``;
export const StyledToolbar = styled(Toolbar)``;
export const StyledTypography = styled(Typography)`
&& {
font-family: pala;
font-size: 10rem;
color: ${props => props.theme.primaryWhite};
}
`;
export interface Props {
title: string;
}
export class NavBar extends PureComponent<Props> {
render() {
return (
<StyledAppBar>
<StyledToolbar>
<StyledTypography>{this.props.title}</StyledTypography>
</StyledToolbar>
</StyledAppBar>
);
}
}
export default NavBar;
颜色和字体大小的样式已正确应用,但自定义字体未正确应用。我是否必须以某种方式将自定义字体添加到 ThemeProvider
并通过 props.theme.font
使用它?还是我做错了什么?
使用样式组件 createGlobalStyle 声明自定义字体:
- 像导入模块一样导入字体
- 使用 tagged template literals.
在您的 @font-face
声明中插入它
这是你的 globalStyles.ts
:
// globalStyles.ts
import { createGlobalStyle } from "styled-components";
// 1. import the font
import pala from "./assets/pala.ttf";
export const theme = {
primaryBlue: "#0794B4",
secondaryBlue: "#043157",
primaryWhite: "#fff"
};
// 2. interpolate it using tagged template literals
const GlobalStyle = createGlobalStyle`
@font-face {
font-family: pala;
src: url(${pala}) format('truetype');
font-weight: normal;
font-style: normal;
}
html {
font-size: 10px;
}
`;
export default GlobalStyle;
如果您想了解有关样式组件中标记模板文字的更多信息,Max Stoiber(样式组件的创建者)写道 a really nice article about it。
我正在使用 material-ui 样式组件和 TypeScript 构建一个 React 应用程序。
我正在尝试将自定义字体与我的样式组件一起使用,但我很难让它正常工作。
我做的第一件事是创建了一个 globalStyles.ts
文件 createGlobalStyle
:
import { createGlobalStyle } from "styled-components";
export const theme = {
primaryBlue: "#0794B4",
secondaryBlue: "#043157",
primaryWhite: "#fff"
};
const GlobalStyle = createGlobalStyle`
@font-face {
font-family: pala;
src: url("./assets/pala.ttf") format('truetype');
font-weight: normal;
font-style: normal;
}
html {
font-size: 10px;
}
`;
export default GlobalStyle;
我在我的应用程序中添加了 ThemeProvider
和 GlobalStyle
:
import React, { Component } from "react";
import "./App.css";
import NavBar from "./components/NavBar";
import { ThemeProvider } from "styled-components";
import GlobalStyle, { theme } from "./globalStyles";
class App extends Component {
render() {
return (
<ThemeProvider theme={theme}>
<div className="App-header">
<NavBar title="MyCompany" />
<GlobalStyle />
</div>
</ThemeProvider>
);
}
}
export default App;
然后我尝试在我的样式组件中使用这种字体:
import React, { PureComponent } from "react";
import styled from "styled-components";
import AppBar from "@material-ui/core/AppBar";
import Toolbar from "@material-ui/core/Toolbar";
import Typography from "@material-ui/core/Typography";
export const StyledAppBar = styled(AppBar)``;
export const StyledToolbar = styled(Toolbar)``;
export const StyledTypography = styled(Typography)`
&& {
font-family: pala;
font-size: 10rem;
color: ${props => props.theme.primaryWhite};
}
`;
export interface Props {
title: string;
}
export class NavBar extends PureComponent<Props> {
render() {
return (
<StyledAppBar>
<StyledToolbar>
<StyledTypography>{this.props.title}</StyledTypography>
</StyledToolbar>
</StyledAppBar>
);
}
}
export default NavBar;
颜色和字体大小的样式已正确应用,但自定义字体未正确应用。我是否必须以某种方式将自定义字体添加到 ThemeProvider
并通过 props.theme.font
使用它?还是我做错了什么?
使用样式组件 createGlobalStyle 声明自定义字体:
- 像导入模块一样导入字体
- 使用 tagged template literals. 在您的
@font-face
声明中插入它
这是你的 globalStyles.ts
:
// globalStyles.ts
import { createGlobalStyle } from "styled-components";
// 1. import the font
import pala from "./assets/pala.ttf";
export const theme = {
primaryBlue: "#0794B4",
secondaryBlue: "#043157",
primaryWhite: "#fff"
};
// 2. interpolate it using tagged template literals
const GlobalStyle = createGlobalStyle`
@font-face {
font-family: pala;
src: url(${pala}) format('truetype');
font-weight: normal;
font-style: normal;
}
html {
font-size: 10px;
}
`;
export default GlobalStyle;
如果您想了解有关样式组件中标记模板文字的更多信息,Max Stoiber(样式组件的创建者)写道 a really nice article about it。