/openbmc/phosphor-webui/app/common/styles/base/ |
H A D | colors.scss | 2 $color--blue-100: #1B2834; 3 $color--blue-50: #1D3458; 4 $color--blue-40: #2D60E5; 5 $color--blue-30: #7295F1; 6 $color--blue-20: #CCD7F4; 7 $color--blue-10: #EFF2FB; 9 $color--grey-100: #333333; 10 $color--grey-80: #666666; 11 $color--grey-60: #999999; 12 $color--grey-40: #CCCCCC; [all …]
|
H A D | buttons.scss | 21 type (.btn-primary, .btn-secondary) will provide color 31 border-color: transparent; 80 background-color: $btn-primary__bg; 81 border-color: $btn-primary__bg; 82 color: $btn-primary__txt; 84 background-color: $btn-primary__bg--hover; 85 border-color: $btn-primary__bg--hover; 90 border-color: $btn-primary__bg--disabled; 91 color: $btn-primary__txt--disabled; 107 background-color: $btn-secondary__bg; [all …]
|
H A D | forms.scss | 5 color: $text-02; 19 color: $text-02; 36 border: 1px solid $border-color-02; 43 border-color: $border-color-01; 49 border: 1px solid $border-color-02; 53 color: $status-error; 64 border-color: $border-color-01; 71 border-color: $border-color-01; 79 color: $status-error; 89 [type="color"], [all …]
|
/openbmc/webui-vue/src/assets/styles/bmc/custom/ |
H A D | _alert.scss | 5 color: gray("800"); 48 border-left-color: theme-color("info"); 49 background-color: theme-color-light("info"); 50 fill: theme-color("info"); 54 border-left-color: theme-color("success"); 55 background-color: theme-color-light("success"); 56 fill: theme-color("success"); 60 border-left-color: theme-color("danger"); 61 background-color: theme-color-light("danger"); 62 fill: theme-color("danger"); [all …]
|
H A D | _toasts.scss | 19 background-color: inherit!important; //override specificity 21 color: theme-color("dark")!important; //override specificity 39 color: theme-color("dark"); 44 border-left-color: theme-color("success")!important; 45 background-color: theme-color-light("success")!important; 49 border-left-color: theme-color("info")!important; 50 background-color: theme-color-light("info")!important; 54 border-left-color: theme-color("danger")!important; 55 background-color: theme-color-light("danger")!important; 59 border-left-color: theme-color("warning")!important; [all …]
|
H A D | _forms.scss | 7 color: gray("700")!important; 12 color: gray("800"); 24 border-color: gray("500") !important; 25 background-color: gray("100"); 34 color: theme-color("dark"); 35 background-color: gray("100"); 39 background-color: gray("400"); 40 color: gray("600"); 43 color: gray("600"); 47 border: 1px solid theme-color("danger") !important; [all …]
|
H A D | _buttons.scss | 15 color: gray("600"); 19 border-color: gray("400"); 20 background-color: gray("400"); 29 border-color: $white; 30 box-shadow: inset 0 0 0 3px theme-color('primary'), inset 0 0 0 5px $white; 38 border-color: $white; 39 box-shadow: inset 0 0 0 3px theme-color('secondary'), inset 0 0 0 5px $white; 46 fill: theme-color("primary"); 49 background-color: gray("200"); 50 color: theme-color("primary"); [all …]
|
/openbmc/u-boot/tools/patman/ |
H A D | terminal.py | 7 This module handles terminal interaction including ANSI color codes. 54 col = Color() 55 text = col.Color(colour, text) 84 col = Color() 85 print(col.Color(line.colour, line.text), end='') 92 class Color(object): class 93 """Conditionally wraps text in ANSI color escape sequences.""" 102 """Create a new Color object, optionally disabling color output. 105 enabled: True if color output should be enabled. If False then this 106 class will not add color codes at all. [all …]
|
/openbmc/u-boot/test/py/ |
H A D | multiplexed_log.css | 10 * - color highlighting of various messages. 14 background-color: black; 15 color: #ffffff; 24 color: #808080; 29 border-color: #303030; 35 background-color: #303030; 49 color: #ff0000 53 color: #ffff00 57 color: #808080 61 color: #8080ff [all …]
|
/openbmc/openbmc/poky/bitbake/lib/toaster/toastergui/static/css/ |
H A D | qunit-1.18.0.css | 1 …color:#8699A4;background-color:#0D3349;font-size:1.5em;line-height:1em;font-weight:400;border-radi…
|
H A D | bootstrap.min.css | 5 …color:transparent}a:active,a:hover{outline:0}abbr[title]{border-bottom:1px dotted}b,strong{font-we…
|
H A D | bootstrap.css | 46 background-color: transparent; 67 color: #000; 118 color: inherit; 195 color: #000 !important; 246 border-top-color: #000 !important; 256 background-color: #fff !important; 1011 .glyphicon-text-color:before { 1082 -webkit-tap-highlight-color: rgba(0, 0, 0, 0); 1088 color: #333; 1089 background-color: #fff; [all …]
|
/openbmc/webui-vue/docs/customization/ |
H A D | theme.md | 110 variable will change the background color for the following elements: 122 The semantic naming of this variable identifies its purpose. This color should 129 Supporting a different color palette is a simple process. The default color 130 palette is supported using the Sass variables outlined in the color guidelines 131 and color maps outlined in the theme's overview. The following sections provide 134 ### Color subsection 138 overrides. There are three Sass maps created to establish the color palette. 139 These include the `color` map, `theme-color` map, and `gray` map. These maps are 147 Adding, removing, or updating the color variables and map is how the application 148 color palette can be customized. Using these variables outside of the helper [all …]
|
/openbmc/webui-vue/docs/.vuepress/components/colors/ |
H A D | greens.vue | 3 <div class="color-tile-container"> 4 <div v-for="color in colors"> 6 :style="{ backgroundColor: color.hex }" 7 :class="{ 'color-tile--border': color.border }" 8 class="color-tile" 10 <dl class="color-tile-desc"> 11 <dt>Color variable:</dt> 12 <dd>${{ color.variable }}</dd> 14 <dl class="color-tile-desc"> 16 <dd>{{ color.hex }}</dd>
|
H A D | yellows.vue | 3 <div class="color-tile-container"> 4 <div v-for="color in colors"> 6 :style="{ backgroundColor: color.hex }" 7 :class="{ 'color-tile--border': color.border }" 8 class="color-tile" 10 <dl class="color-tile-desc"> 11 <dt>Color variable:</dt> 12 <dd>${{ color.variable }}</dd> 14 <dl class="color-tile-desc"> 16 <dd>{{ color.hex }}</dd>
|
H A D | blues.vue | 3 <div class="color-tile-container"> 4 <div v-for="color in colors"> 6 :style="{ backgroundColor: color.hex }" 7 :class="{ 'color-tile--border': color.border }" 8 class="color-tile" 10 <dl class="color-tile-desc"> 11 <dt>Color variable:</dt> 12 <dd>${{ color.variable }}</dd> 14 <dl class="color-tile-desc"> 16 <dd>{{ color.hex }}</dd>
|
H A D | reds.vue | 3 <div class="color-tile-container"> 4 <div v-for="color in colors"> 6 :style="{ backgroundColor: color.hex }" 7 :class="{ 'color-tile--border': color.border }" 8 class="color-tile" 10 <dl class="color-tile-desc"> 11 <dt>Color variable:</dt> 12 <dd>${{ color.variable }}</dd> 14 <dl class="color-tile-desc"> 16 <dd>{{ color.hex }}</dd>
|
H A D | grays.vue | 3 <div class="color-tile-container"> 4 <div v-for="color in colors"> 6 :style="{ backgroundColor: color.hex }" 7 :class="{ 'color-tile--border': color.border }" 8 class="color-tile" 10 <dl class="color-tile-desc"> 11 <dt>Color variable:</dt> 12 <dd>${{ color.variable }}</dd> 14 <dl class="color-tile-desc"> 16 <dd>{{ color.hex }}</dd>
|
/openbmc/qemu/ui/icons/ |
H A D | qemu.svg | 24 style="stop-color:#000000;stop-opacity:1;" 30 style="stop-color:#000000;stop-opacity:0.87843138;" /> 32 style="stop-color:#ffffff;stop-opacity:0.43921569;" 38 style="stop-color:#181818;stop-opacity:1;" /> 40 style="stop-color:#242424;stop-opacity:1;" 44 style="stop-color:#000000;stop-opacity:1;" 51 style="stop-color:#000000;stop-opacity:1;" 55 style="stop-color:#000000;stop-opacity:0.8974359;" 62 style="stop-color:#ffffff;stop-opacity:1;" 66 style="stop-color:#ffffff;stop-opacity:0;" [all …]
|
/openbmc/phosphor-webui/app/access-control/styles/ |
H A D | ldap.scss | 8 background-color: $base-02--06; 17 border-left: 1px solid $border-color-01; 37 color: $primary-dark; 47 color: $base-02--02 !important; 65 background-color: $primary-light; 69 color: $base-02--03; 70 border-color: $border-color-02; 85 color: $base-02--02; 96 color: $base-02--02; 105 color: $primary-dark; [all …]
|
/openbmc/phosphor-webui/app/common/styles/elements/ |
H A D | alerts.scss | 3 background-color: $accent-04--02; 4 border-color: $accent-04--01; 6 color: $primary-dark; 10 background-color: $accent-03--03; 11 border-color: $accent-03--02; 13 color: $primary-dark; 21 background-color: $background-02; 44 background-color: $background-02; 45 border-color: $border-color-01; 49 background-color: $accent-03--03; [all …]
|
H A D | toast.scss | 5 color: $text-01; 16 color: $text-01; 35 background-color: $notification-error--light; 36 border-left-color: $notification-error--dark; 39 background-color: $notification-success--light; 40 border-left-color: $notification-success--dark; 43 background-color: $notification-warn--light; 44 border-left-color: $notification-warn--dark; 47 background-color: $notification-info--light; 48 border-left-color: $notification-info--dark;
|
/openbmc/qemu/pc-bios/ |
H A D | qemu_logo.svg | 26 style="stop-color:#000000;stop-opacity:1;" 32 style="stop-color:#000000;stop-opacity:0.87843138;" /> 34 style="stop-color:#ffffff;stop-opacity:0.43921569;" 40 style="stop-color:#181818;stop-opacity:1;" /> 42 style="stop-color:#242424;stop-opacity:1;" 46 style="stop-color:#000000;stop-opacity:1;" 53 style="stop-color:#000000;stop-opacity:1;" 57 style="stop-color:#000000;stop-opacity:0.8974359;" 64 style="stop-color:#ffffff;stop-opacity:1;" 68 style="stop-color:#ffffff;stop-opacity:0;" [all …]
|
/openbmc/webui-vue/src/components/AppNavigation/ |
H A D | AppNavigation.vue | 169 color: theme-color('secondary'); 172 background-color: theme-color-level(dark, -10.5); 173 color: theme-color('dark'); 177 background-color: theme-color-level(light, 0); 178 box-shadow: inset 0 0 0 2px theme-color('primary'); 179 color: theme-color('dark'); 184 background-color: theme-color('secondary'); 185 color: $white; 191 background-color: theme-color('secondary'); 192 color: theme-color('light'); [all …]
|
/openbmc/phosphor-webui/app/common/styles/components/ |
H A D | alert-banner.scss | 16 background-color: $notification-error--light; 17 border-left-color: $notification-error--dark; 20 background-color: $notification-success--light; 21 border-left-color: $notification-success--dark; 24 background-color: $notification-warn--light; 25 border-left-color: $notification-warn--dark; 28 background-color: $notification-info--light; 29 border-left-color: $notification-info--dark;
|