Socket
Socket
Sign inDemoInstall

nuke-theme-provider

Package Overview
Dependencies
2
Maintainers
2
Versions
56
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    nuke-theme-provider

主题换肤


Version published
Weekly downloads
8
decreased by-83.67%
Maintainers
2
Install size
147 kB
Created
Weekly downloads
 

Readme

Source

ThemeProvider

  • category: Util
  • chinese: 主题注入
  • type: 工具

何时使用

需要全局换肤的时候,可以通过简单修改主题变量,达到换肤的目的。

API

StyleProvider

属性说明类型默认值
style需要替换的主题变量集合obj
androidConfigs安卓 md 相关配置,如{materialDesign:false,rippleEnabled:false}obj
  • style

    style 注入提供了主题换肤能力,使用 style 注入变量后,可以直接替换全局的颜色、大小配置。

    使用 demo:

    import { StyleProvider } from 'nuke-theme-provider';
    
    let orange = {
        Core:{
            [`color-brand1-1`]: '#FFF0E6', // [主品牌色-浅]
            [`color-brand1-6`]: '#FF6A00', // [主品牌色-常规]
            [`color-brand1-9`]: '#E35300'  // [主品牌色-深]
        },
    
    };
    <StyleProvider style={orange}>
         <Button type="primary" style={styles.btn}>主操作</Button>
    </StyleProvider>
    
  • androidConfigs

    androidConfigs 是为安卓定制,主要用于 MD 开关的开启、关闭。当前开放的 api 为:

    {
        materialDesign:true, // 是否启用 materialDesign 效果
        rippleEnabled:true // 是否开启水波纹特效
    }
    

    使用 demo:

    import { StyleProvider } from 'nuke-theme-provider';
    
    <StyleProvider androidConfigs={{materialDesign:true,rippleEnabled:true}}>
         <Button type="primary" style={styles.btn}>主操作</Button>
    </StyleProvider>
    

    附常用基础变量


'color-brand1-1' :'#E4F0FD', // [主品牌色-浅]

'color-brand1-6': '#3089DC', // [主品牌色-常规]

'color-Brand1-9' :'#1170BC', // [主品牌色-深]

'color-line1-2' :'#DCDEE3', // [线条-常规]

'color-line1-3' :'#C4C6CF', // [线条-深]

'color-text1-2' :'#999999', // [文字-浅]

'color-text1-3' :'#666666', // [文字-常规]



其他

  • bug、建议联系 @翊晨
  • 钉钉交流群

Keywords

FAQs

Last updated on 26 Sep 2019

Did you know?

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

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc