diff options
author | steckbrief <steckbrief@chefmail.de> | 2016-03-29 11:43:22 +0200 |
---|---|---|
committer | steckbrief <steckbrief@chefmail.de> | 2016-03-29 11:43:22 +0200 |
commit | 6244834096727cfc1aaaeba7845a6d9cfe27d2b0 (patch) | |
tree | bc532e86b2bfca9afbcfcfc4c383b48ecb287ea4 /src/main/res/values | |
parent | 0c0676b7dbf87e24ebcc4714adfb10d91e3d72b8 (diff) |
Implements FS#173: Move access to colors to separate helper class
Diffstat (limited to '')
-rw-r--r-- | src/main/res/values/colors.xml | 14 |
1 files changed, 13 insertions, 1 deletions
diff --git a/src/main/res/values/colors.xml b/src/main/res/values/colors.xml index 2d744395..2a0ad592 100644 --- a/src/main/res/values/colors.xml +++ b/src/main/res/values/colors.xml @@ -4,11 +4,23 @@ <color name="secondaryBackground">@color/grey200</color> <color name="primaryText">@color/black87</color> <color name="secondaryText">@color/black54</color> + <color name="tertiaryText">@color/black12</color> + + <color name="primaryTextOnDark">@color/white</color> + <color name="secondaryTextOnDark">@color/white70</color> + <color name="warning">@color/red500</color> <color name="error">@color/red500</color> - <color name="online">@color/green500</color> <color name="notification">@color/green500</color> + <!-- Colors for presence status --> + <color name="online">@color/green500</color> + <color name="chat">@color/green500</color> + <color name="away">@color/orange500</color> + <color name="xa">@color/orange500</color> + <color name="dnd">#ffe51c23</color> + <color name="offline">#ffcccccc</color> + <color name="primary">@color/green500</color> <color name="primary_dark">@color/green700</color> <color name="accent">#ff0091ea</color> |