1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
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
|
---
title: "How to Create a Theme for an App"
date: 2023-08-04T15:30:12+08:00
categories: Coding
tags:
- Web
- Design
description: "A method to create a theme of an app by the developer himself/herself."
draft: true
---
Recently I'm developing my [Timeline](https://github.com/crupest/Timeline) app. One of the goals is to refactor the theme, aka, color system.
I used to try to implement a color system like this. User can choose a color as the primary color, and the app will generate a series of colors (palette) based on the primary color, which then are used to colorize the UI components. But I found it's not a good idea. The generated colors are not harmonious, so it's not good-looking. Maybe it's because I'm not a color expert.
So I'm going to remove the custom color system and turn to use a fixed color palette. It will largely reduce the complexity. And I can implement the *dark mode* more easily.
However, it's still a problem to design the colors in the palette. After I chose the primary color, which is most likely to be *blue*, I have to create other variants of the primary color and use them to colorize the UI components.
So how to derive a palette from a primary color? How many colors do I need? Which color should be used on which UI component? What about different states of a component? These all become problems. And I have struggled on this for a long time.
After a lot of tries, I come up with a rather easy process. First, I need to list all the colors I will use for all components and mark those that need to have both light and dark variants. Then I create colors for them, and do the test to ensure they are beautiful.
1. List all components and the colors used by them (including colors for different states of components). At the same time, mark the colors that need to have both a dark and a light variant.
2. Merge the colors that can be used at different places.
3. Choose real colors for the colors needed.
## What about CSS
If we get the value of colors, how do we organize CSS. This is a important problem. Nowadays CSS allows us to use CSS variable, which is widely used for color system. It significantly increase the ability to establish logic structure of color system and reuse color values. Now the problem is how do we use CSS variables. How many CSS variables should we define?
You may think that every color used by components should be defined by a single variable. However, this makes you CSS tedious. In the following section of listing colors, you can see that many components use the same color. It's mainly because those colors represent the same semantic of components. So those colors should be defined by CSS variables definitely. And components needing that semantic just use them. Meanwhile, some colors that used by a single color should also be organized together with the commonly used colors to change them easily (You don't have to seek them in other places). So the principles are two:
1. Commonly used colors (for same semantic) should be defined in CSS variables and components use them.
2. Colors used by a single components should be organized together with the colors above for convenience of control.
So the anti-pattern is to define commonly used colors again for each component. They just makes code tedious with no real help.
## Key Color
Some colors are key color based. Some are not. Key color indicates the action type of a component. Basic key colors are:
- *Primary*, the default color, used for primary action, or you don't know which key color should be used/.
- *Secondary*, used for non-primary action.
- *Create*, used for creating, success, or anything that you think is good.
- *Danger*, used for deleting, or anything that you think is dangerous.
## List All Colors
By default, colors need a light and a dark variant unless explicitly noted.
### Common
``` plain
- body.background
- text.primary
- text.secondary
```
### Button
*push button*, the most commonly used buttons, used as the button for primary action, or you don't know the type of button you should use.
``` plain
- push-button.[key].background.normal
- push-button.[key].background.hover
- push-button.[key].background.focus
- push-button.[key].background.active
- push-button.text
- push-button.disabled.background
- push-button.disabled.text
```
*outline button*, the outline version of push button, used for second action, or where push button is not suitable.
``` plain
- outline-button.[key].border.normal
- outline-button.[key].border.hover
- outline-button.[key].border.focus
- outline-button.[key].border.active
- outline-button.[key].text.normal
- outline-button.[key].text.hover
- outline-button.[key].text.focus
- outline-button.[key].text.active
- outline-button.disabled.border
- outline-button.disabled.text
```
*flat button*, button embed in background, used when button should not be so, showy?
``` plain
- flat-button.background.normal
- flat-button.background.hover
- flat-button.background.focus
- flat-button.background.active
- flat-button.[key].text
- flat-button.disabled.text
```
*icon button*, button with an icon.
``` plain
- icon-button.[key].color.normal
- icon-button.[key].color.hover
- icon-button.[key].color.focus
- icon-button.[key].color.active
- icon-button.disabled.color
```
*summary for button*, merge all colors that can be **commonly** used.
``` plain
- button.[key].normal
- push-button.[key].background.normal
- outline-button.[key].border.normal
- outline-button.[key].text.normal
- flat-button.[key].text
- icon-button.[key].color.normal
- button.[key].hover
- push-button.[key].background.hover
- outline-button.[key].border.hover
- outline-button.[key].text.hover
- icon-button.[key].color.hover
- button.[key].focus
- push-button.[key].background.focus
- outline-button.[key].border.focus
- outline-button.[key].text.focus
- icon-button.[key].color.focus
- button.[key].active
- push-button.[key].background.active
- outline-button.[key].border.active
- outline-button.[key].text.active
- icon-button.[key].color.active
- button.disabled
- push-button.disabled.background
- outline-button.disabled.border
- outline-button.disabled.text
- flat-button.disabled.text
- icon-button.disabled.color
```
So the colors that need to be set individually are:
``` plain
- push-button.text
- push-button.disabled.text
- flat-button.background.normal
- flat-button.background.hover
- flat-button.background.focus
- flat-button.background.active
```
|