🚨 Shai-Hulud Strikes Again:More than 500 packages and 700+ versions compromised.Technical Analysis
Socket
Book a DemoInstallSign in
Socket

@instructure/canvas-theme

Package Overview
Dependencies
Maintainers
36
Versions
1783
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@instructure/canvas-theme

A theme for Canvas LMS made by Instructure Inc.

Source
npmnpm
Version
10.6.2-snapshot-3
Version published
Weekly downloads
11K
-19.9%
Maintainers
36
Weekly downloads
 
Created
Source

category: packages

canvas-theme

npm MIT License Code of Conduct

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

This theme has a 3:1 minimum contrast requirement.

Installation

npm install @instructure/canvas-theme

Usage

Before mounting (rendering) your React application:

  • global theming:

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

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

To override the variables:

  • globally:

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

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

FAQs

Package last updated on 29 Nov 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