diff options
Diffstat (limited to 'www/content/posts/create-a-theme-for-an-app.md')
-rw-r--r-- | www/content/posts/create-a-theme-for-an-app.md | 151 |
1 files changed, 151 insertions, 0 deletions
diff --git a/www/content/posts/create-a-theme-for-an-app.md b/www/content/posts/create-a-theme-for-an-app.md new file mode 100644 index 0000000..936db11 --- /dev/null +++ b/www/content/posts/create-a-theme-for-an-app.md @@ -0,0 +1,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 +``` |