darkmode.md 7.3 KB
Newer Older
D
DCloud_LXH 已提交
1
# DarkMode 适配指南 @darkmode
D
DCloud_LXH 已提交
2 3 4

> HBuilder X 3.6.9+ 支持

D
DCloud_LXH 已提交
5 6
> 暗黑模式(Dark Mode),也被称为夜间模式或深色模式,是一种高对比度,或者反色模式的显示模式。是一种有利于在黑暗环境下观看手机的高对比度的模式,与传统的白底黑字相反,在夜间长时间观看手机不至于太难受,会给你一种更舒适的感觉,可能会对视力有所保护。

D
DCloud_LXH 已提交
7
## 开启 DarkMode @open-darkmode
D
DCloud_LXH 已提交
8 9 10

> 在 `manifest.json` 配置,应用的部分配置可通过变量的形式配置,在变量配置文件中定义不同主题下的颜色或图标,各平台配置如下:

D
DCloud_LXH 已提交
11
### app-plus
D
DCloud_LXH 已提交
12 13 14 15 16 17 18

`manifest.json -> app-plus` 中配置:

1. 配置 `darkmode:true`
2. 配置 `themeLocation`,指定变量配置文件 `theme.json` 路径,例如:在根目录下新增 `theme.json`,需要配置 `"themeLocation":"theme.json"`
3.`theme.json` 中定义相关变量
4.`pages.json` 中以@开头引用变量
D
DCloud_LXH 已提交
19
5. 整体配置
D
DCloud_LXH 已提交
20
   ```json
D
DCloud_LXH 已提交
21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55
    "app-plus" : {
   		"darkmode" : true,
   		"themeLocation" : "theme.json" // 如果 theme.json 在根目录可省略
    }
   ```
6. 需要云端打包生效

#### iOS 安全区域适配

- 开启安全区域占位

  > 在 manifest.json 文件的"plus" 节点下添加 "safearea" 适配 iOS 的安全区域,"background" 对应正常模式下安全区域外的背景颜色,"backgroundDark"对应暗黑模式下安全区域外的背景颜色

	```json
	"plus" : {
		"safearea": { //iOS平台的安全区域
			"background": "#ffffff",
			"backgroundDark": "#2f0508", // HX 3.1.19+支持
			"bottom": {
				"offset": "auto"
			}
		}
	}
	```

- 关闭安全区域占位
  > 将 "offset" 置为 “none” 关闭安全区域的占位,注:关闭安全区域占位在刘海屏页面内容可能会被 “homeBar” 挡住,需要自行适配,具体请参考文档 [iOS 刘海屏适配](https://ask.dcloud.net.cn/article/35564)

	```json
	"safearea": {
			"bottom": {
					"offset": "none"
			}
	}
	```
D
DCloud_LXH 已提交
56

D
DCloud_LXH 已提交
57 58 59
**注意:iOS 13+、Android 10+设备上才支持**

### h5
D
DCloud_LXH 已提交
60 61 62 63 64 65 66

`manifest.json -> h5` 中配置:

1. 配置 `darkmode:true`
2. 配置 `themeLocation`,指定变量配置文件 `theme.json` 路径,例如:在根目录下新增 `theme.json`,需要配置 `"themeLocation":"theme.json"`
3.`theme.json` 中定义相关变量
4.`pages.json` 中以@开头引用变量
D
DCloud_LXH 已提交
67
5. 整体配置
D
DCloud_LXH 已提交
68
   ```json
D
DCloud_LXH 已提交
69 70 71 72 73
    "h5" : {
   		"darkmode" : true,
   		"themeLocation" : "theme.json" // 如果 theme.json 在根目录可省略
    }
   ```
D
DCloud_LXH 已提交
74

D
DCloud_LXH 已提交
75
### mp-weixin
D
DCloud_LXH 已提交
76 77 78 79 80 81 82

`manifest.json -> mp-weixin` 中配置:

1. 配置 `darkmode:true`
2. 配置 `themeLocation`,指定变量配置文件 `theme.json` 路径,例如:在根目录下新增 `theme.json`,需要配置 `"themeLocation":"theme.json"`
3.`theme.json` 中定义相关变量
4.`pages.json` 中以@开头引用变量
D
DCloud_LXH 已提交
83
5. 整体配置
D
DCloud_LXH 已提交
84
   ```json
D
DCloud_LXH 已提交
85 86 87 88 89
    "mp-weixin" : {
   		"darkmode" : true,
   		"themeLocation" : "theme.json" // 如果 theme.json 在根目录可省略
    }
   ```
D
DCloud_LXH 已提交
90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110

支持通过变量配置的属性如下所示:

- 全局配置 globalStyle 与页面支持

  - navigationBarBackgroundColor
  - navigationBarTextStyle
  - backgroundColor
  - backgroundTextStyle
  - backgroundColorTop
  - backgroundColorBottom

- 全局配置 tabbar 属性:
  - color
  - selectedColor
  - backgroundColor
  - borderStyle
  - list
    - iconPath
    - selectedIconPath

D
DCloud_LXH 已提交
111
## 变量配置文件 theme.json@themejson
D
DCloud_LXH 已提交
112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156

`theme.json` 用于颜色主题相关的变量定义,需要先在 `themeLocation` 中配置 `theme.json` 的路径,否则无法读取变量配置。包含以下属性:

| 属性  | 类型   | 必填 | 描述                 |
| :---- | :----- | :--- | :------------------- |
| light | Object | 是   | 浅色模式下的变量定义 |
| dark  | Object | 是   | 深色模式下的变量定义 |

示例如下:

```json
{
	"light": {
		"navBgColor": "#f8f8f8",
		"navTxtStyle": "black"
	},
	"dark": {
		"navBgColor": "#292929",
		"navTxtStyle": "white"
	}
}
```

完成定义后,可在 `pages.json` 中全局配置或页面配置的相关属性中以 `@` 开头引用,例如:

```json
// 全局配置
{
  "window": {
    "navigationBarBackgroundColor": "@navBgColor",
    "navigationBarTextStyle": "@navTxtStyle"
  }
}
// 页面配置
{
	"path": "pages/index/index",
	"style":{
		"navigationBarBackgroundColor": "@navBgColor",
		"navigationBarTextStyle": "@navTxtStyle"
	}
}
```

配置完成后,调用相应 api 框架会自动所设属性,展示对应主题下的颜色。

D
DCloud_LXH 已提交
157
## 配置示例@themeconfig
D
DCloud_LXH 已提交
158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228

pages.json(示例省略了主题相关以外的配置项)

```json
{
	"globalStyle": {
		"navigationBarBackgroundColor": "@navBgColor",
		"navigationBarTextStyle": "@navTxtStyle",
		"backgroundColor": "@bgColor",
		"backgroundTextStyle": "@bgTxtStyle",
		"backgroundColorTop": "@bgColorTop",
		"backgroundColorBottom": "@bgColorBottom"
	},
	"tabBar": {
		"color": "@tabFontColor",
		"selectedColor": "@tabSelectedColor",
		"backgroundColor": "@tabBgColor",
		"borderStyle": "@tabBorderStyle",
		"list": [
			{
				"iconPath": "@iconPath1",
				"selectedIconPath": "@selectedIconPath1"
			},
			{
				"iconPath": "@iconPath2",
				"selectedIconPath": "@selectedIconPath2"
			}
		]
	}
}
```

theme.json

```json
{
	"light": {
		"navBgColor": "#f8f8f8",
		"navTxtStyle": "black",
		"bgColor": "#ffffff",
		"bgTxtStyle": "light",
		"bgColorTop": "#eeeeee",
		"bgColorBottom": "#efefef",
		"tabFontColor": "#000000",
		"tabSelectedColor": "#3cc51f",
		"tabBgColor": "#ffffff",
		"tabBorderStyle": "black",
		"iconPath1": "image/icon1_light.png",
		"selectedIconPath1": "image/selected_icon1_light.png",
		"iconPath2": "image/icon2_light.png",
		"selectedIconPath2": "image/selected_icon2_light.png"
	},
	"dark": {
		"navBgColor": "#292929",
		"navTxtStyle": "white",
		"bgColor": "#1f1f1f",
		"bgTxtStyle": "dark",
		"bgColorTop": "#292929",
		"bgColorBottom": "#1f1f1f",
		"tabFontColor": "#ffffff",
		"tabSelectedColor": "#51a937",
		"tabBgColor": "#292929",
		"tabBorderStyle": "white",
		"iconPath1": "image/icon1_dark.png",
		"selectedIconPath1": "image/selected_icon1_dark.png",
		"iconPath2": "image/icon2_dark.png",
		"selectedIconPath2": "image/selected_icon2_dark.png"
	}
}
```

D
DCloud_LXH 已提交
229
## 获取当前主题@get-theme
D
DCloud_LXH 已提交
230 231 232 233 234

如果 `manifest.json` 对应平台配置中声明了`"darkmode": true``uni.getSystemInfo``uni.getSystemInfoSync` 的返回结果中会包含 `theme` 属性,值为 `light``dark`

如果 `manifest.json` 对应平台配置未声明`"darkmode": true`,则无法获取到 `theme` 属性(即 theme 为 undefined)。

D
DCloud_LXH 已提交
235
## 监听主题切换事件@on-theme-change
D
DCloud_LXH 已提交
236

D
DCloud_LXH 已提交
237
支持两种方式:
D
DCloud_LXH 已提交
238 239 240 241

1.`App.vue` 中写上 `onThemeChange` 生命周期,主题切换时会触发
2. 通过 `uni.onThemeChange` 监听主题变化,`uni.offThemeChange` 取消监听

D
DCloud_LXH 已提交
242
## 页面 css 适配@perfers-color-scheme
D
DCloud_LXH 已提交
243 244

> [css 支持情况](https://caniuse.com/?search=prefers-color-scheme)
D
DCloud_LXH 已提交
245 246 247 248

在 css 中,支持通过媒体查询 `prefers-color-scheme` 适配不同主题,与 Web 中适配方式一致,例如:

```css
D
DCloud_LXH 已提交
249
/* 一般情况下的样式 start */
D
DCloud_LXH 已提交
250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268
.some-background {
	background: white;
}
.some-text {
	color: black;
}
/* 一般情况下的样式 end */

@media (prefers-color-scheme: dark) {
	/* DarkMode 下的样式 start */
	.some-background {
		background: #1b1b1b;
	}
	.some-text {
		color: #ffffff;
	}
	/* DarkMode 下的样式 end */
}
```