UNPKG

create-expo-cljs-app

Version:

Create a react native application with Expo and Shadow-CLJS!

23 lines 684 B
import color from 'color'; import DefaultTheme from './DefaultTheme'; import { black, white, pinkA100 } from './colors'; const DarkTheme = { ...DefaultTheme, dark: true, mode: 'adaptive', colors: { ...DefaultTheme.colors, primary: '#BB86FC', accent: '#03dac6', background: '#121212', surface: '#121212', error: '#CF6679', onBackground: '#FFFFFF', onSurface: '#FFFFFF', text: white, disabled: color(white).alpha(0.38).rgb().string(), placeholder: color(white).alpha(0.54).rgb().string(), backdrop: color(black).alpha(0.5).rgb().string(), notification: pinkA100 } }; export default DarkTheme; //# sourceMappingURL=DarkTheme.js.map