Home
last modified time | relevance | path

Searched full:color (Results 1 – 25 of 1992) sorted by relevance

12345678910>>...80

/openbmc/phosphor-webui/app/common/styles/base/
H A Dcolors.scss2 $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 Dbuttons.scss21 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 …]
/openbmc/linux/tools/testing/selftests/futex/functional/
H A Drun.sh21 # Test for a color capable console
30 COLOR="-c"
37 ./futex_requeue_pi $COLOR
38 ./futex_requeue_pi $COLOR -b
39 ./futex_requeue_pi $COLOR -b -l
40 ./futex_requeue_pi $COLOR -b -o
41 ./futex_requeue_pi $COLOR -l
42 ./futex_requeue_pi $COLOR -o
44 ./futex_requeue_pi $COLOR -b -l -t 5000
45 ./futex_requeue_pi $COLOR -l -t 5000
[all …]
/openbmc/u-boot/tools/patman/
H A Dterminal.py7 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/openbmc/poky/bitbake/lib/toaster/toastergui/static/css/
H A Dqunit-1.18.0.css1color:#8699A4;background-color:#0D3349;font-size:1.5em;line-height:1em;font-weight:400;border-radi…
H A Dbootstrap.min.css5color:transparent}a:active,a:hover{outline:0}abbr[title]{border-bottom:1px dotted}b,strong{font-we…
H A Dbootstrap.css46 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 Dtheme.md110 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/src/assets/styles/bmc/custom/
H A D_alert.scss5 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.scss19 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.scss7 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.scss15 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/linux/tools/perf/util/
H A Dcolor.c7 #include "color.h"
13 static int __color_vsnprintf(char *bf, size_t size, const char *color, in __color_vsnprintf() argument
28 if (perf_use_color_default && *color) in __color_vsnprintf()
29 r += scnprintf(bf, size, "%s", color); in __color_vsnprintf()
31 if (perf_use_color_default && *color) in __color_vsnprintf()
39 static int __color_vfprintf(FILE *fp, const char *color, const char *fmt, in __color_vfprintf() argument
54 if (perf_use_color_default && *color) in __color_vfprintf()
55 fprintf(fp, "%s", color); in __color_vfprintf()
57 if (perf_use_color_default && *color) in __color_vfprintf()
62 int color_vsnprintf(char *bf, size_t size, const char *color, in color_vsnprintf() argument
[all …]
/openbmc/u-boot/test/py/
H A Dmultiplexed_log.css10 * - 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/qemu/ui/icons/
H A Dqemu.svg24 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/linux/Documentation/userspace-api/media/v4l/
H A Dcolorspaces.rst9 'Color' is a very complex concept and depends on physics, chemistry and
11 'green' and 'blue' components of the color of a pixel does not mean that
12 you can accurately display that color. A colorspace defines what it
14 which color should be reproduced on the screen in a perfectly calibrated
17 In order to do that we first need to have a good definition of color,
18 i.e. some way to uniquely and unambiguously define a color so that
19 someone else can reproduce it. Human color vision is trichromatic since
20 the human eye has color receptors that are sensitive to three different
22 color. Be glad you are not a mantis shrimp as those are sensitive to 12
26 Color exists only in the eye and brain and is the result of how strongly
[all …]
/openbmc/linux/Documentation/devicetree/bindings/display/mediatek/
H A Dmediatek,color.yaml4 $id: http://devicetree.org/schemas/display/mediatek/mediatek,color.yaml#
7 title: Mediatek display color processor
14 Mediatek display color processor, namely COLOR, provides hue, luma and
17 COLOR device node must be siblings to the central MMSYS_CONFIG node.
26 - mediatek,mt2701-disp-color
27 - mediatek,mt8167-disp-color
28 - mediatek,mt8173-disp-color
31 - mediatek,mt7623-disp-color
32 - mediatek,mt2712-disp-color
33 - const: mediatek,mt2701-disp-color
[all …]
/openbmc/qemu/pc-bios/
H A Dqemu_logo.svg26 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/phosphor-webui/app/access-control/styles/
H A Dldap.scss8 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/linux/drivers/gpu/drm/mediatek/
H A Dmtk_disp_color.c48 struct mtk_disp_color *color = dev_get_drvdata(dev); in mtk_color_clk_enable() local
50 return clk_prepare_enable(color->clk); in mtk_color_clk_enable()
55 struct mtk_disp_color *color = dev_get_drvdata(dev); in mtk_color_clk_disable() local
57 clk_disable_unprepare(color->clk); in mtk_color_clk_disable()
64 struct mtk_disp_color *color = dev_get_drvdata(dev); in mtk_color_config() local
66 mtk_ddp_write(cmdq_pkt, w, &color->cmdq_reg, color->regs, DISP_COLOR_WIDTH(color)); in mtk_color_config()
67 mtk_ddp_write(cmdq_pkt, h, &color->cmdq_reg, color->regs, DISP_COLOR_HEIGHT(color)); in mtk_color_config()
72 struct mtk_disp_color *color = dev_get_drvdata(dev); in mtk_color_start() local
75 color->regs + DISP_COLOR_CFG_MAIN); in mtk_color_start()
76 writel(0x1, color->regs + DISP_COLOR_START(color)); in mtk_color_start()
[all …]
/openbmc/webui-vue/src/components/AppNavigation/
H A DAppNavigation.vue172 color: theme-color('secondary');
175 background-color: theme-color-level(dark, -10.5);
176 color: theme-color('dark');
180 background-color: theme-color-level(light, 0);
181 box-shadow: inset 0 0 0 2px theme-color('primary');
182 color: theme-color('dark');
187 background-color: theme-color('secondary');
188 color: $white;
194 background-color: theme-color('secondary');
195 color: theme-color('light');
[all …]
/openbmc/linux/include/uapi/linux/dvb/
H A Dosd.h24 OSD_Open, /* (x0,y0,x1,y1,BitPerPixel[2/4/8](color&0x0F),mix[0..15](color&0xF0)) */
41 * Sets all pixel to color 0
44 OSD_Fill, /* (color) */
46 * Sets all pixel to color <col>
49 OSD_SetColor, /* (color,R{x0},G{y0},B{x1},opacity{y1}) */
59 OSD_SetPalette, /* (firstcolor{color},lastcolor{x0},data) */
63 * data has 4 byte for each color:
66 OSD_SetTrans, /* (transparency{color}) */
71 OSD_SetPixel, /* (x0,y0,color) */
73 * sets pixel <x>,<y> to color number <col>
[all …]
/openbmc/linux/drivers/gpu/drm/amd/display/dc/core/
H A Ddc_hw_sequencer.c257 * Remove default and add case for all color space in color_space_to_black_color()
258 * so when we forget to add new color space in color_space_to_black_color()
308 struct tg_color *color) in get_mpctree_visual_confirm_color() argument
324 *color = pipe_colors[top_pipe->pipe_idx]; in get_mpctree_visual_confirm_color()
329 struct tg_color *color) in get_surface_visual_confirm_color() argument
335 /* set border color to red */ in get_surface_visual_confirm_color()
336 color->color_r_cr = color_value; in get_surface_visual_confirm_color()
338 /* set border color to pink */ in get_surface_visual_confirm_color()
339 color->color_b_cb = color_value; in get_surface_visual_confirm_color()
340 color->color_g_y = color_value * 0.5; in get_surface_visual_confirm_color()
[all …]
/openbmc/webui-vue/docs/.vuepress/components/colors/
H A Dgreens.vue3 <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 Dyellows.vue3 <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>

12345678910>>...80