Theme

The theme provided by La Danze UI is basically a material-ui theme. The color scheme is based on a football club colors (SRFC) 🔴⚫. See demo for live preview.

Usage#

To use it, just wrapp your app with Theme and that's it:

import React from 'react';
import ReactDOM from 'react-dom';
import { Theme } from 'la-danze-ui';
function App() {
return (
<Theme>
<div>my app</div>
</Theme>
);
}

API#