How to use the @theme-ui/color.alpha function in @theme-ui/color

To help you get started, we’ve selected a few @theme-ui/color examples, based on popular ways it is used in public projects.

Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.

github MunifTanjim / gatsby-theme-dox / theme / src / theme.js View on Github external
code: {
      fontFamily: 'monospace',
      fontSize: 'inherit'
    },
    table: {
      width: '100%',
      overflow: 'auto',
      borderCollapse: 'collapse',
      borderSpacing: 0
    },
    tr: {
      borderTop: '1px solid gray'
    },
    th: {
      border: '1px solid',
      borderColor: alpha('text', 0.25),
      p: '0.25em 0.5em'
    },
    td: {
      border: '1px solid',
      borderColor: alpha('text', 0.25),
      p: '0.25em 0.5em'
    }
  },
  layout: {
    global: {
      html: {
        boxSizing: 'border-box',
        fontSize: 0
      },
      [['*', '*:after', '*:before']]: {
        boxSizing: 'inherit'
github MunifTanjim / gatsby-theme-dox / theme / src / components / Sidebar / ItemTitle.js View on Github external
width: '2.5rem',
    background: 'transparent',
    color: 'inherit',
    border: 0,
    textAlign: 'center',
    display: 'flex',
    justifyContent: 'center',
    alignItems: 'center'
  },
  Title: {
    variant: 'linkStyles.nav',
    display: 'block',
    pr: '2.5rem',
    ':hover': {
      variant: 'linkStyles.nav.:hover',
      bg: alpha('primary', 0.05)
    }
  }
}

function ToggleableItemTitle({ id, item, isActive, isExpanded, toggleItem }) {
  return item.link ? (
    <span>
      
        {item.title}
      

      </span>
github MunifTanjim / gatsby-theme-dox / theme / src / components / Sidebar / Toggler.js View on Github external
{open ? 'Close' : 'Open'} Sidebar
      

      {open &amp;&amp; (
        
          <div role="presentation">
        
      )}
    
  )
}
</div>

@theme-ui/color

Color manipulation utilities for Theme UI

MIT
Latest version published 3 months ago

Package Health Score

89 / 100
Full package analysis

Similar packages