• This project
    • Loading...
  • Sign in

Hooke / lls_program

Itomix
Go to a project
Toggle navigation Toggle navigation pinning
  • Projects
  • Groups
  • Snippets
  • Help
  • Project
  • Activity
  • Repository
  • Pipelines
  • Graphs
  • Issues 0
  • Merge Requests 0
  • Wiki
  • Snippets
  • Network
  • Create a new issue
  • Builds
  • Commits
  • Issue Boards
  • Files
  • Commits
  • Network
  • Compare
  • Branches
  • Tags
Switch branch/tag
  • lls_program
  • src
  • assets
  • styles
  • base.less
  • hookehuyr's avatar
    feat: 初始化项目基础结构和功能 · 48b5893a ...
    48b5893a
    添加项目基础文件结构,包括页面、组件、工具函数和API配置
    实现首页、授权页和demo页面的基础功能
    集成Taro4、Vue3、Pinia和NutUI组件库
    配置TailwindCSS和Less支持
    添加微信小程序相关工具函数和API封装
    hookehuyr authored 2025-08-27 11:54:01 +0800
base.less 309 Bytes
Raw Blame History Permalink
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
@namespace: 'meihua';

/* ============ 颜色 ============ */

// 主色调
@base-color: #199A74;

// 文字颜色
@base-font-color: #333333;
@sub-font-color: #999999;

// 定义一个映射
#colors() {
  base-color: @base-color;
  base-font-color: @base-font-color;
}

// 混合
.width100 {
  width: 100%;
}