6
8

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

Googleマテリアルデザインガイドのフォントカラーを指定する

Posted at

Googleのマテリアルデザインのスタイルガイドというものがあります。
http://www.google.com/design/spec/style/color.html#

この中にフォントカラー等のガイドラインがあります。
↓こんなやつ↓
style_color_uiapplication_alpha1.png

要するに、基準となるBase colorを定めて、そこから不透明率にてバリエーションを生み出せいうことなのでしょうが、この各々の不透明率がアルファ値で書くとどうなるのかを表にしました。

不透明率 アルファ値
100% FF
87% DE
70% B3
54% 8A
30% 4D
26% 42
12% 1F

colors.xmlに指定する場合は次のようにARGBで指定する。

colors.xml
...
    <color name="colorPrimaryTextLight">#DE000000</color>
    <color name="colorSecondaryTextLight">#8A000000</color>
...

参考

6
8
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
6
8

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?