Welcome to mirror list, hosted at ThFree Co, Russian Federation.

colors.xml « values « res « main « src « app - github.com/stefan-niedermann/nextcloud-deck.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 1b9a313f403ffdbb0e4a2c540473a8fe3d7132d5 (plain)
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
<?xml version="1.0" encoding="utf-8"?>
<resources>

    <!-- ======================================= -->
    <!-- Base Theme                              -->
    <!-- ======================================= -->

    <color name="primary">@android:color/white</color>
    <color name="accent">@android:color/black</color>
    <color name="defaultBrand">#0082C9</color>
    <color name="danger">#d40000</color>

    <!-- ======================================= -->
    <!-- Custom styles                           -->
    <!-- TODO REMOVE                             -->
    <!-- ======================================= -->

    <color name="bottom_sheet_backdrop">#7f000000</color>
    <color name="grey600">#757575</color>
    <color name="fg_secondary">#999</color>
    <color name="bg_highlighted">#eee</color>
    <color name="bg_info_box">#dddddd</color>
    <color name="bg_card">@android:color/white</color>
    <color name="defaultTextHighlightBackground">#2233334a</color>

    <!-- ======================================= -->
    <!-- Widgets                                 -->
    <!-- ======================================= -->

    <color name="widget_outer_background">#eef9f9f9</color>
    <color name="widget_background">#ddffffff</color>
    <color name="widget_foreground">#222222</color>

    <!-- ======================================= -->
    <!-- Static colors                           -->
    <!-- Are theme independent and should match  -->
    <!-- the colors of the Deck server app.      -->
    <!-- ======================================= -->

    <!-- Due Date badges -->
    <color name="due_today">#f8f2e5</color>
    <color name="due_overdue">#fbe7e6</color>
    <color name="due_done">#e9f1eb</color>
    <color name="due_text_today">#855d00</color>
    <color name="due_text_overdue">#c61610</color>
    <color name="due_text_done">#286c39</color>

    <!-- Activity -->
    <color name="activity_create">#00D400</color>
    <color name="activity_delete">#D40000</color>

    <!-- ======================================= -->
    <!-- Static colors                           -->
    <!-- These colors are stored in the backend  -->
    <!-- and must not be altered. They are       -->
    <!-- theme independent.                      -->
    <!-- ======================================= -->

    <!-- Default colors for boards, labels, … -->
    <color name="board_default_color">#b6469d</color>
    <color name="board_default_custom_color">#616161</color>
    <string-array name="board_default_colors">
        <item>#b6469d</item>
        <item>#bf678b</item>
        <item>#c98879</item>
        <item>#ddcb55</item>
        <item>#a5b872</item>
        <item>#6ea68f</item>
        <item>#3794ac</item>
        <item>#0082c9</item>
        <item>#2d73be</item>
        <item>#5b64b3</item>
        <item>#8855a8</item>
    </string-array>
</resources>