Skip to content

Instantly share code, notes, and snippets.

@enzomanuelmangano
Last active May 19, 2021 16:58
Show Gist options
  • Save enzomanuelmangano/9db43180fa34504648d57831062a1ff2 to your computer and use it in GitHub Desktop.
Save enzomanuelmangano/9db43180fa34504648d57831062a1ff2 to your computer and use it in GitHub Desktop.
Theme Colors
import React from 'react';
import { View, StyleSheet } from 'react-native';
const Colors = {
dark: {
background: '#1E1E1E',
circle: '#252525',
text: '#F8F8F8',
},
light: {
background: '#F8F8F8',
circle: '#FFF',
text: '#1E1E1E',
},
};
const SWITCH_TRACK_COLOR = {
true: 'rgba(256, 0, 256, 0.2)',
false: 'rgba(0,0,0,0.1)',
};
export default function App() {
return <View style={styles.container} />;
}
const styles = StyleSheet.create({
container: {
flex: 1,
alignItems: 'center',
justifyContent: 'center',
},
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment