mateosilguero
consistencss
TypeScript

An "atomic css" style toolkit for React Native

Last updated Apr 2, 2025
48
Stars
3
Forks
32
Issues
0
Stars/day
Attention Score
3
Language breakdown
TypeScript 52.9%
JavaScript 31.3%
Java 10.0%
Objective-C 3.6%
CSS 1.5%
Ruby 0.5%
โ–ธ Files click to expand
README

consistencss

All Contributors

npm version consistencss consistencss

logo

An "atomic css" style toolkit for React Native, inspired by tailwindcss

Full Documentation: https://consistencss.now.sh/

Installation

npm install consistencss

using yarn:

yarn add consistencss

Troubleshooting

See Troubleshooting.

Usage

import { View } from 'react-native';
import C, { apply } from 'consistencss';

// ... const App = () => { return ( <View style={apply(C.m4, C.p2, C.bgRed)}> <Text style={C.textRed}></Text> <Text style={[C.textBlue, C.m6]}></Text> <Text style={styles.subtitle}></Text> </View> ); };

// apply also accepts strings const styles = { title: apply(C.font6, C.uppercase), subtitle: apply('capitalize', C.mt2), };

Set your theme using extend

import { View } from 'react-native';
import C, { apply, extend } from 'consistencss';

extend({ colors: { primary: 'cornflowerblue', secondary: 'green', randomcolor: '#f2d687', }, });

const App = () => { return ( <View style={apply(C.bgPrimary)}> <View style={apply(C.bgRandomcolor)}></View> </View> ); };

or change the default base size (4):

import { Text, View } from 'react-native';
import C, { apply, extend } from 'consistencss';

// the default base is 4, so m4 = margin: 16 // m2 = margin: 8

extend({ sizing: { base: 2, }, });

// chaging to 2, m4 = margin: 8 // m2 = margin: 4

const App = () => { return <View style={apply(C.mt4)}></View>; };

even you could set default styles for componentes, like View, Text and TouchableOpacity

import C, { apply, extend, View } from 'consistencss';

extend({ components: { View: apply(C.bgYellow, C.p4), }, });

const App = () => { // we import View from consistencss // and this have a default style return <View></View>; };

Uses the classNames API, and create your custom classes !

import C, { apply, extend, classNames, View, Text } from 'consistencss';

extend({ classes: { debug: apply(C.border1, C.borderRed), }, });

const App = () => { return ( <View style={C.debug}> <Text style={classNames('debug')}> ... </Text> </View>; };

This repository includes:

License

MIT

Contributors โœจ

Thanks goes to these wonderful people (emoji key):


Mateo Silguero

๐Ÿ’ป

Ezequiel Leites

๐Ÿ’ป

This project follows the all-contributors specification. Contributions of any kind welcome!

ยฉ 2026 GitRepoTrend ยท mateosilguero/consistencss ยท Updated daily from GitHub