Skip to content

Latest commit

 

History

History
103 lines (84 loc) · 2.53 KB

theme.md

File metadata and controls

103 lines (84 loc) · 2.53 KB
title
主题定制

Mand Mobile默认提供了一套基于滴滴的金融业务设计规范的UI主题,同时还支持主题定制。用户可以对颜色、字体、元素尺寸等样式进行自由调整,从而满足在不同业务场景下的视觉需求。

样式变量

Mand Mobile样式基于Stylus开发,可通过全局和组件的样式变量对主题样式进行调整

完整的变量列表可以查看默认样式变量

变量覆盖

可以通过引入组件源码,覆盖样式变量的方式来实现主题定制

  • 首先,项目需要安装依赖,babel-plugin-import stylus stylus-loader css-loader
npm install --save-dev babel-plugin-import stylus stylus-loader css-loader
  • 配置babel-plugin-import, 确保引入组件源码
// .babelrc or babel-loader/ts-loader option
{
    "plugins": [
        ["import", {"libraryName": "mand-mobile", "libraryDirectory": "components"}],
    ]
}
  • 创建自定义主题文件,如theme.custom.styl
@import '~mand-mobile/components/_style/mixin/util'
@import '~mand-mobile/components/_style/mixin/theme'

// 建议安装并引入css拓展nib
@import '~nib/lib/nib/vendor'
@import '~nib/lib/nib/gradients'
@import '~nib/lib/nib/flex'

// 覆盖样式变量
color-primary = #1AAD19
  • 配置webpack,引入主题文件
const poststylus = require('poststylus')
const pxtorem = require('postcss-pxtorem')

module.exports = {
	// ...
	module: {
    rules: [
      // ...
      {
        test: /\.js$/,
        loader: 'babel-loader',
        include: /node_modules\/mand-mobile/
      },
      {
        test: /\.styl$/,
        use: [
          'css-loader',
          {
            loader: 'stylus-loader',
            options: {
              import:['theme.custom.styl']
            }
          }
        ]
      },
      {
        test: /\.(png|jpe?g|gif)(\?.*)?$/,
        loader: 'url-loader',
        include: /node_modules\/mand-mobile/
      },
      // ...
    ]
  },

  plugins: [
    // ...
    new webpack.LoaderOptionsPlugin({
      options: {
        stylus: {
          // pxtorem 配置可根据项目需要而定
          use: [poststylus(pxtorem({ rootValue: 100, propWhiteList: [] }))]
        }
      }
    }),
    // ...
  ]
}