Skip to content

Instantly share code, notes, and snippets.

@niksmac
Last active March 28, 2021 01:57
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save niksmac/d549c1868f55983eda887f41f35d0efd to your computer and use it in GitHub Desktop.
Save niksmac/d549c1868f55983eda887f41f35d0efd to your computer and use it in GitHub Desktop.
'use strict'
// Refer https://baseweb.design/components/base-provider/#baseprovider-api
const primitives = {
primaryFontFamily: `'B612', sans-serif;`,
accent600: '#059669',
accent700: '#047857',
}
const overrides = {
colors: {
buttonPrimaryFill: primitives.accent600,
buttonPrimaryHover: primitives.accent700,
buttonPrimaryActive: primitives.accent600,
inputFill: '#FCFCFC'
},
borders: {
buttonBorderRadius: '0.125rem'
}
}
const theme = createLightTheme(primitives, overrides)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment