Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@hixme-ui/theme

Package Overview
Dependencies
Maintainers
3
Versions
50
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@hixme-ui/theme

hixme-ui theme

  • 2.0.0-alpha.13
  • npm
  • Socket score

Version published
Maintainers
3
Created
Source

Theme

npm i --save @hixme-ui/theme

Theme

HUI theme colors and defaults

import theme from '@hixme-ui/theme'

const primary = theme.colors.primary

ThemeProvider

HUI theme provider, which is just an implementation of styled-components ThemeProvider with the HUI theme as the default

import { ThemeProvider } from '@hixme-ui/theme'

const App = ({ children }) => (
  <ThemeProvider>
    {children}
  </ThemeProvider>
)

withGlobal prop

The HUI was built with some global settings, including the normalize CSS. These global styles are not set by default and are enabled by adding the withGlobal property on the ThemeProvider.


const App = ({ children }) => (
  <ThemeProvider withGlobal>
    {children}
  </ThemeProvider>
)

Keywords

FAQs

Package last updated on 06 May 2023

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc