all repos — dotfiles @ 3668cec0ad0e05a9d43432250db33d27935c7b37

my *nix dotfiles

themes/whitey/gtk-3.20/_colors-public.scss (view raw)

 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
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
 100
 101
 102
 103
 104
 105
 106
 107
 108
 109
 110
 111
 112
 113
 114
 115
 116
 117
 118
 119
 120
 121
 122
 123
 124
 125
 126
 127
 128
 129
 130
 131
 132
 133
 134
 135
 136
 137
 138
 139
 140
 141
 142
 143
 144
 145
 146
 147
 148
 149
 150
 151
 152
 153
 154
 155
 156
 157
 158
 159
 160
 161
 162
 163
 164
 165
 166
 167
 168
 169
 170
 171
 172
 173
 174
 175
 176
 177
 178
 179
 180
 181
 182
 183
 184
 185
 186
 187
//
// Apps rely on some named colors to be exported
//

// GTK NAMED COLORS
// ----------------
// Use responsibly!
//
// Sass thinks we're using the colors in the variables as strings and may shoot
// warning, it's innocuous and can be defeated by using "" + $var


/***********
 * Colours *
 ***********/

//
// Widget text/foreground color
//

@define-color theme_fg_color #{"" +$fg_color};


//
// Widget inverted text/foreground color
//

@define-color theme_inverted_fg_color #{"" +$inverted_fg_color};


//
// Text color for entries, views and content in general
//

@define-color theme_text_color #{"" +$fg_color};


//
// Widget base background color
//

@define-color theme_bg_color #{"" +$bg_color};


//
// Text widgets and the like base background color
//

@define-color theme_base_color #{"" +$base_color};


//
// Base background color of selections
//

@define-color theme_selected_bg_color #{"" +$selected_bg_color};


//
// Text/foreground color of selections
//

@define-color theme_selected_fg_color #{"" +$selected_fg_color};


//
// Base background color of insensitive widgets
//

@define-color insensitive_bg_color #{"" +$bg_color};


//
// Text foreground color of insensitive widgets
//

@define-color insensitive_fg_color #{"" +$insensitive_fg_color};


//
// Insensitive text widgets and the like base background color
//

@define-color insensitive_base_color #{"" +$secondary_base_color};


//
// Widget text/foreground color on backdrop windows
//

@define-color theme_unfocused_fg_color #{"" +$insensitive_fg_color};


//
// Widget inverted text/foreground color on backdrop windows
//

@define-color theme_unfocused_inverted_fg_color #{"" +$insensitive_inverted_fg_color};


//
// Text color for entries, views and content in general on backdrop windows
//

@define-color theme_unfocused_text_color #{"" +$insensitive_fg_color};


//
// Text inverted color for entries, views and content in general on backdrop windows
//

@define-color theme_unfocused_inverted_text_color #{"" +$insensitive_inverted_fg_color};


//
// Widget base background color on backdrop windows
//

@define-color theme_unfocused_bg_color #{"" +$bg_color};


//
// Text widgets and the like base background color on backdrop windows
//

@define-color theme_unfocused_base_color #{"" +$base_color};


//
// Base background color of selections on backdrop windows
//

@define-color theme_unfocused_selected_bg_color #{"" +$selected_bg_color};


//
// Text/foreground color of selections on backdrop windows
//

@define-color theme_unfocused_selected_fg_color #{"" + $selected_fg_color};


//
// Text/foreground color of placeholders
//

@define-color placeholder_text_color #{"" + $placeholder_text_color};


//
// Widgets main borders color
//

@define-color borders #{"" +$borders_color};


//
// Widgets main borders color on backdrop windows
//

@define-color unfocused_borders #{"" +$borders_color};


//
// These are pretty self explicative
//

@define-color warning_color #{"" +$warning_color};
@define-color error_color #{"" +$error_color};
@define-color success_color #{"" +$success_color};
@define-color link_color #{"" +$link_color};


//
// Revert wm_bg_a/b for gnome-flashback (metacity)
//

@define-color wm_bg_a #{"" +$inverted_dark_color};
@define-color wm_bg_b #{"" +$highlight_color};


//
// FIXME: this is really an API
//

@define-color content_view_bg #{"" +$base_color};