mirror of
https://github.com/zhigang1992/react-native-paper.git
synced 2026-06-12 00:34:38 +08:00
29 lines
506 B
JavaScript
29 lines
506 B
JavaScript
/* @flow */
|
|
|
|
export type Theme = {
|
|
dark: boolean,
|
|
roundness: number,
|
|
colors: {
|
|
primary: string,
|
|
background: string,
|
|
surface: string,
|
|
accent: string,
|
|
error: string,
|
|
text: string,
|
|
disabled: string,
|
|
placeholder: string,
|
|
},
|
|
fonts: {
|
|
regular: string,
|
|
medium: string,
|
|
light: string,
|
|
thin: string,
|
|
},
|
|
};
|
|
|
|
export type ThemeShape = $Shape<{
|
|
...Theme,
|
|
colors: $Shape<$PropertyType<Theme, 'colors'>>,
|
|
fonts: $Shape<$PropertyType<Theme, 'fonts'>>,
|
|
}>;
|