New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More

@instructure/canvas-high-contrast-theme

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@instructure/canvas-high-contrast-theme

A high contrast theme for Canvas LMS made by Instructure Inc.


Version published
Weekly downloads
19K
increased by22.25%
Maintainers
0
Weekly downloads
 
Created

category: packages

canvas-high-contrast-theme

npm MIT License Code of Conduct

A high contrast UI component theme for Canvas LMS made by Instructure Inc.

This theme meets the WCAG 2 Level AA 4.5:1 minimum contrast requirements.

Installation

npm install @instructure/canvas-high-contrast-theme

Usage

Before mounting (rendering) your React application:

  • global theming:

    import { theme } from '@instructure/canvas-high-contrast-theme'
    
    theme.use()
    
  • application level theming:

    import { theme } from '@instructure/canvas-high-contrast-theme'
    
    ReactDOM.render(
      <InstUISettingsProvider theme={theme}>
        <App />
      </InstUISettingsProvider>,
      element
    )
    

To override the variables:

  • globally:

    import { theme } from '@instructure/canvas-high-contrast-theme'
    
    theme.use({ overrides: { spacing: { xxxSmall: '0.3rem' } } })
    
  • application level:

    import { theme } from '@instructure/canvas-high-contrast-theme'
    const themeOverrides = { spacing: { xxxSmall: '0.3rem' } }
    
    ReactDOM.render(
      <InstUISettingsProvider theme={{ ...theme, ...themeOverrides }}>
        <App />
      </InstUISettingsProvider>,
      element
    )
    

FAQs

Package last updated on 16 Oct 2024

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