How to use the co/style/colors.themed.mainAlt function in co

To help you get started, we’ve selected a few co examples, based on popular ways it is used in public projects.

Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.

github raindropio / mobile / src / co / common / cover / style.js View on Github external
	background-color: ${({fallbackColor, theme})=>fallbackColor||themed.mainAlt({theme})};
github raindropio / mobile / src / screens / collections / home / ipad.js View on Github external
title: {
					component: {
						name: 'component/logoText',
						alignment: 'center'
					}
				},
				...buttons,
				leftButtons: [
					{
						id: 'settings',
						icon: require('assets/images/settings.png')
					}
				]
			},
			layout: {
				backgroundColor: themed.mainAlt()
			}
		}
	}
github raindropio / mobile / src / screens / collections / home / ipad.js View on Github external
static options() {
		return {
			topBar: {
				background: {
					color: themed.mainAlt()
				},
				title: {
					component: {
						name: 'component/logoText',
						alignment: 'center'
					}
				},
				...buttons,
				leftButtons: [
					{
						id: 'settings',
						icon: require('assets/images/settings.png')
					}
				]
			},
			layout: {