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