mirror of
https://github.com/callstack/react-native-testing-library.git
synced 2026-09-18 23:09:04 +08:00
33 lines
514 B
TypeScript
33 lines
514 B
TypeScript
export const theme = {
|
|
colors: {
|
|
button: '#3256a8',
|
|
buttonText: '#ffffff',
|
|
validator: '#d0421b',
|
|
text: '#333333',
|
|
label: '#666666',
|
|
},
|
|
spacing: {
|
|
s: 8,
|
|
m: 16,
|
|
l: 24,
|
|
xl: 40,
|
|
},
|
|
textVariants: {
|
|
header: {
|
|
fontSize: 32,
|
|
fontFamily: 'System',
|
|
color: 'text',
|
|
},
|
|
title: {
|
|
fontSize: 24,
|
|
fontFamily: 'System',
|
|
color: 'text',
|
|
},
|
|
body: {
|
|
fontSize: 16,
|
|
fontFamily: 'System',
|
|
color: 'text',
|
|
},
|
|
},
|
|
};
|