~nick-dedekind/ubuntu-ui-toolkit/prevent-slider-mouse-stealing

« back to all changes in this revision

Viewing changes to modules/Ubuntu/Components/Themes/Ambiance/Palette.qml

staging sync

Show diffs side-by-side

added added

removed removed

Lines of Context:
19
19
import Ubuntu.Components.Themes 0.1
20
20
 
21
21
Palette {
22
 
    normal: PaletteValues {
 
22
    normal {
23
23
        background: "#EDEDED"
24
24
        backgroundText: "#81888888"
25
25
        base: Qt.rgba(0, 0, 0, 0.1)
28
28
        foregroundText: "#FFFFFF"
29
29
        overlay: "#FDFDFD"
30
30
        overlayText: UbuntuColors.lightGrey
31
 
        field: "#FAFAFA"
 
31
        field: "lightgray"
32
32
        fieldText: UbuntuColors.darkGrey
33
33
    }
34
 
    selected: PaletteValues {
 
34
    selected {
35
35
        background: Qt.rgba(0, 0, 0, 0.05)
36
36
        backgroundText: UbuntuColors.darkGrey
37
 
        selection: foreground // unused
 
37
        selection: selected.foreground // unused
38
38
        foreground: Qt.rgba(UbuntuColors.blue.r, UbuntuColors.blue.g, UbuntuColors.blue.b, 0.2)
39
39
        foregroundText: UbuntuColors.darkGrey
40
40
        field: "#FFFFFF"