/PlutoCSS

A CSS and React Native color framework designed to work along with w3.css

Primary LanguageCSSMIT LicenseMIT

PlutoCSS

Link stylesheet here
Download React-Native version Here

A css Color framework

by, ClassicMC

Basics in React

  import './bc.css'
  
  function basicReactComponent(){
    return(
      <h1 className='bc-green'>Hello World!</h1>
    );
  };
  
  export default basicReactComponent;

Basics in React-Native

  import * as React from 'react';
  import { Text, View, Image, StyleSheet } from 'react-native';
  import { bc } from './styles/Bc'

  export default function App(){
    return(
      <View>
        <Text style={[bc.mint, bc.textAlign,bc.padding25,bc.radius25]}>Hello, World!</Text>
        <View style={bc.alignItems}>
          <Image source={require('./assets/betterColors.png')} />
        </View>
      </View>
    );
  }