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

theme-class-generator

Package Overview
Dependencies
Maintainers
1
Versions
4
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

theme-class-generator

A function which can generate theme style classes from a simple config

  • 1.0.3
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
65
decreased by-17.72%
Maintainers
1
Weekly downloads
 
Created
Source

theme-class-generator

A function which can generate theme style classes from a simple config

Admin UI专用的主题样式类生成工具

使用示例

let classes = themeClassGenerator({
  theme: {
    colors: { // 彩色配置,默认配置如下
      primary: '#1c86e2',
      info: '#68217a',
      warning: '#f5ae08',
      danger: '#ea3a46',
      success: '#0cb470',
      'custom-color': '#f00'
    },
    shadows: { // 阴影配置,默认配置如下
      primary: '2px 2px 4px #1c86e2',
      info: '2px 2px 4px #68217a',
      warning: '2px 2px 4px #f5ae08',
      danger: '2px 2px 4px #ea3a46',
      success: '2px 2px 4px #0cb470',
      'custom-shadow': '3px 3px 6px #00f'
    },
    radiuses: {
      small: '3px',
      large: '5px'
      'custom-radius': '13px'
    }
  },
  prefix: 'au-theme', // 样式类的前缀
  lightnessReverse: false, // 反转lightness排序(黑白主题)
  colorTopBottom: 10, // top和bottom颜色距离纯黑和纯白的lightness的距离,越小越接近纯黑纯白
  colorUpDown: 10, // 彩色上下接近色与正色的lightness距离
  baseColorLevel: 12, // 无彩色分级数量
  baseColorHue: 10%, // 无彩色饱和度
  baseShadowOpacity: 0.2, // 无彩色阴影不透明度
  colorShadowOpacity: 0.6 // 彩色阴影不透明度
})
let style = document.createElement('style')
style.innerHTML = classes
document.getElementsByTagName('head')[0].appendChild(style)

具体使用详见Admin UI 文档 - 主题 章节

Keywords

FAQs

Package last updated on 01 Aug 2019

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