1.0.4 ā€¢ Published 4 years ago

trend-colors v1.0.4

Weekly downloads
5
License
MIT
Repository
github
Last release
4 years ago

Welcome to Trend Colors šŸ‘‹

Version License: MIT Twitter: pedrinho_lemes

Color palettes for your project with react and styled-components

šŸ  Homepage

How to use

styles/theme.js

import { MaterialUiPalette, ChakraUiPalette } from "trend-colors";

const theme = {
  ...ChakraUiPalette,
  primary: "#83c9f4",
  secondary: "#6f73d2",
  fore: "#1d2135",
  back: "#d9f0ff",
};
export default theme;

App.js

import { ThemeProvider } from "styled-components";
import theme from "./styles/theme";
import GlobalStyle from "./styles/global";

function App({ children }) {
  return (
    <ThemeProvider theme={theme}>
      <GlobalStyle />
      {children}
    </ThemeProvider>
  );
}

Author

šŸ‘¤ Pedro Henrique

šŸ¤ Contributing

Contributions, issues and feature requests are welcome!

Feel free to check issues page. You can also take a look at the contributing guide.

Show your support

Give a ā­ļø if this project helped you!

šŸ“ License

Copyright Ā© 2020 Pedro Henrique.

This project is MIT licensed.


This README was generated with ā¤ļø by readme-md-generator