mirror of
https://github.com/zhigang1992/react-native-paper.git
synced 2026-06-12 00:34:38 +08:00
24 lines
388 B
JavaScript
24 lines
388 B
JavaScript
/* @flow */
|
|
|
|
export type Theme = {
|
|
dark: boolean,
|
|
roundness: number,
|
|
colors: {
|
|
primary: string,
|
|
primaryDark: string,
|
|
background: string,
|
|
paper: string,
|
|
accent: string,
|
|
text: string,
|
|
secondaryText: string,
|
|
disabled: string,
|
|
placeholder: string,
|
|
},
|
|
fonts: {
|
|
regular: string,
|
|
medium: string,
|
|
light: string,
|
|
thin: string,
|
|
},
|
|
};
|