Home
last modified time | relevance | path

Searched refs:TrueColor (Results 1 – 25 of 2050) sorted by relevance

12345678910>>...82

/dports/graphics/blender/blender-2.91.0/release/scripts/addons/io_import_dxf/dxfgrabber/
H A Dcolor.py4 class TrueColor(int): class
45 TrueColor(0x000000),
46 TrueColor(0xff0000),
47 TrueColor(0xffff00),
48 TrueColor(0x00ff00),
49 TrueColor(0x00ffff),
50 TrueColor(0x0000ff),
51 TrueColor(0xff00ff),
52 TrueColor(0xffffff),
53 TrueColor(0x414141),
[all …]
/dports/sysutils/onefetch/onefetch-2.10.2/src/info/
H A Dlanguage.rs160 …lor::Cyan, Color::Blue] : [Color::TrueColor{r:255, g:255, b:255}, Color::TrueColor{r:0, g:24, b:20…
163 …or::Blue, Color::White] : [Color::TrueColor{r:93, g:108, b:191}, Color::TrueColor{r:41, g:54, b:14…
167 …or::Blue, Color::White] : [Color::TrueColor{r:100, g:154, b:210}, Color::TrueColor{r:0, g:68, b:13…
172 …::Cyan, Color::Blue ] : [Color::TrueColor{ r:0, g:163, b:231 }, Color::TrueColor{ r:66, g:223, b:2…
177 …ta] : [Color::TrueColor{r:119, g:178, b:85}, Color::TrueColor{r:146, g:102, b:204}, Color::TrueCol…
200 …::White, Color::White] : [Color::TrueColor{ r:46, g:0 ,b:127}, Color::TrueColor{ r:128, g:128 ,b:1…
214 …:White, Color::Green] : [Color::TrueColor{ r:128, g:195 ,b:66}, Color::TrueColor{ r:255, g:255 ,b:…
225 Color::TrueColor{ r:91, g:0, b:253 },
226 Color::TrueColor{ r:255, g:0, b:94 },
229 Color::TrueColor{ r:0, g:255, b:57 }
[all …]
/dports/devel/interactive_rebase_tool/git-interactive-rebase-tool-1.2.1/src/display/
H A Dcolor_mode.rs1 use crate::display::color_mode::ColorMode::{EightBit, FourBit, TrueColor};
9 TrueColor, enumerator
14 *self == FourBit || *self == EightBit || *self == TrueColor in has_minimum_four_bit_color()
18 *self == TrueColor in has_true_color()
48 assert!(ColorMode::TrueColor.has_minimum_four_bit_color()); in color_mode_has_minimum_four_bit_color_true_color()
72 assert!(ColorMode::TrueColor.has_true_color()); in color_mode_has_true_color_true_color()
77 assert!(ColorMode::TrueColor == ColorMode::TrueColor); in color_mode_equals_other_color_mode()
H A Dutils.rs15 return ColorMode::TrueColor; in detect_color_mode()
25 return ColorMode::TrueColor; in detect_color_mode()
168 assert_eq!(detect_color_mode(0), ColorMode::TrueColor); in detect_color_mode_vte_version_0_36_00()
175 assert_eq!(detect_color_mode(0), ColorMode::TrueColor); in detect_color_mode_vte_version_greater_0_36_00()
202 assert_eq!(detect_color_mode(0), ColorMode::TrueColor); in detect_color_mode_colorterm_env_is_truecolor()
209 assert_eq!(detect_color_mode(0), ColorMode::TrueColor); in detect_color_mode_colorterm_env_is_24bit()
/dports/science/gnudatalanguage/gdl-1.0.1/testsuite/spawn_is_dangerous/
H A Dimage_test.pro80 MESSAGE, /continue, "internal READING of JPEG TrueColor DONE"
82 MESSAGE, /continue, "internal WRITING of JPEG TrueColor DONE"
113 MESSAGE, /continue, "internal READING of BMP TrueColor DONE"
115 MESSAGE, /continue, "internal WRITING of BMP TrueColor DONE"
143 MESSAGE, /continue, "internal READING of PNG TrueColor DONE"
145 MESSAGE, /continue, "internal WRITING of PNG TrueColor DONE"
181 print,"Read BMP TrueColor"
186 print,"Read TIFF TrueColor"
191 print,"Read PNG TrueColor"
196 print,"Read JPG TrueColor"
[all …]
/dports/multimedia/termplay/termplay-2.0.6/src/converters/
H A Dmod.rs47 TrueColor enumerator
59 DynamicConverter::TrueColor => TrueColor.display(fmt, image), in display()
67 DynamicConverter::TrueColor => TrueColor.actual_pos(x, y) in actual_pos()
/dports/shells/ion/ion-a8872014dbce730ccd00aaa722397dc394a52bf4/src/lib/shell/
H A Dcolors.rs79 TrueColor(u8, u8, u8), enumerator
99 Mode::TrueColor(red, green, blue) => format!("38;2;{};{};{}", red, green, blue), in fmt()
105 Mode::TrueColor(red, green, blue) => format!("48;2;{};{};{}", red, green, blue), in fmt()
151 *field = Some(Mode::TrueColor(red, green, blue)); in parse_colors()
162 *field = Some(Mode::TrueColor(red, green, blue)); in parse_colors()
287 background: Some(Mode::TrueColor(255, 255, 255)), in three_digit_hex_24bit_colors()
288 foreground: Some(Mode::TrueColor(0, 0, 0)), in three_digit_hex_24bit_colors()
299 background: Some(Mode::TrueColor(255, 0, 0)), in six_digit_hex_24bit_colors()
300 foreground: Some(Mode::TrueColor(0, 255, 0)), in six_digit_hex_24bit_colors()
/dports/graphics/pastel/pastel-0.8.1/src/
H A Dansi.rs18 TrueColor, enumerator
101 Mode::TrueColor => { in to_ansi_sequence()
150 Mode::TrueColor => { in escape_sequence()
159 Mode::TrueColor => { in escape_sequence()
251 Some("truecolor") | Some("24bit") => Mode::TrueColor, in get_colormode()
259 Mode::TrueColor in get_colormode()
357 assert_eq!("\x1b[0m", Style::default().escape_sequence(Mode::TrueColor)); in ansi_style()
361 Color::red().ansi_style().escape_sequence(Mode::TrueColor) in ansi_style()
377 .escape_sequence(Mode::TrueColor) in ansi_style()
383 let ansi = Brush::from_mode(Some(Mode::TrueColor)); in brush()
/dports/devel/gh/cli-2.4.0/vendor/github.com/muesli/termenv/
H A Dtermenv_test.go15 if p != TrueColor && p != Ascii {
16 t.Errorf("Expected %d, got %d", TrueColor, p)
42 out = out.Foreground(TrueColor.Color("#abcdef"))
43 out = out.Background(TrueColor.Color("69"))
84 argb := TrueColor.Color(hex)
94 c := TrueColor.FromColor(color.RGBA{255, 128, 0, 255})
171 p := TrueColor
202 s := String("foobar").Foreground(TrueColor.Color("2"))
211 p := TrueColor
/dports/sysutils/chezmoi/chezmoi-2.9.3/vendor/github.com/muesli/termenv/
H A Dtermenv_test.go15 if p != TrueColor && p != Ascii {
16 t.Errorf("Expected %d, got %d", TrueColor, p)
42 out = out.Foreground(TrueColor.Color("#abcdef"))
43 out = out.Background(TrueColor.Color("69"))
84 argb := TrueColor.Color(hex)
94 c := TrueColor.FromColor(color.RGBA{255, 128, 0, 255})
171 p := TrueColor
202 s := String("foobar").Foreground(TrueColor.Color("2"))
211 p := TrueColor
/dports/devel/gitty/gitty-0.3.0/vendor/github.com/muesli/termenv/
H A Dtermenv_test.go15 if p != TrueColor && p != Ascii {
16 t.Errorf("Expected %d, got %d", TrueColor, p)
42 out = out.Foreground(TrueColor.Color("#abcdef"))
43 out = out.Background(TrueColor.Color("69"))
84 argb := TrueColor.Color(hex)
94 c := TrueColor.FromColor(color.RGBA{255, 128, 0, 255})
171 p := TrueColor
202 s := String("foobar").Foreground(TrueColor.Color("2"))
211 p := TrueColor
/dports/devel/qtcreator/qt-creator-opensource-src-5.0.3/src/libs/3rdparty/syntax-highlighting/src/lib/
H A Dansihighlighter.h27 TrueColor, enumerator
44 AnsiFormat format = AnsiFormat::TrueColor,
48 …highlightData(QIODevice *device, AnsiFormat format = AnsiFormat::TrueColor, bool useEditorBackgrou…
/dports/textproc/kf5-syntax-highlighting/syntax-highlighting-5.89.0/src/lib/
H A Dansihighlighter.h27 TrueColor, enumerator
44 AnsiFormat format = AnsiFormat::TrueColor,
48 …highlightData(QIODevice *device, AnsiFormat format = AnsiFormat::TrueColor, bool useEditorBackgrou…
/dports/shells/elvish/elvish-0.17.0/pkg/ui/
H A Dcolor_test.go21 {T("foo", Fg(TrueColor(30, 40, 50))), "\033[38;2;30;40;50mfoo\033[m"},
22 {T("foo", Bg(TrueColor(30, 40, 50))), "\033[48;2;30;40;50mfoo\033[m"},
33 {TrueColor(0x33, 0x44, 0x55), "#334455"},
/dports/net/tigervnc-server/tigervnc-1.12.0/unix/xserver/hw/xfree86/glamor_egl/
H A Dglamor_xf86_xv.c50 {15, TrueColor}, {16, TrueColor}, {24, TrueColor}, {30, TrueColor}
/dports/x11-servers/xephyr/xorg-server-1.20.13/hw/xfree86/glamor_egl/
H A Dglamor_xf86_xv.c50 {15, TrueColor}, {16, TrueColor}, {24, TrueColor}, {30, TrueColor}
/dports/x11-servers/xorg-dmx/xorg-server-1.20.13/hw/xfree86/glamor_egl/
H A Dglamor_xf86_xv.c50 {15, TrueColor}, {16, TrueColor}, {24, TrueColor}, {30, TrueColor}
/dports/x11-servers/xorg-nestserver/xorg-server-1.20.13/hw/xfree86/glamor_egl/
H A Dglamor_xf86_xv.c50 {15, TrueColor}, {16, TrueColor}, {24, TrueColor}, {30, TrueColor}
/dports/x11-servers/xwayland-devel/xorg-xserver-xorg-server-21.0.99.1-177-g9e5a37961/hw/xfree86/glamor_egl/
H A Dglamor_xf86_xv.c50 {15, TrueColor}, {16, TrueColor}, {24, TrueColor}, {30, TrueColor}
/dports/x11-servers/xwayland/xorg-server-1.20.13/hw/xfree86/glamor_egl/
H A Dglamor_xf86_xv.c50 {15, TrueColor}, {16, TrueColor}, {24, TrueColor}, {30, TrueColor}
/dports/x11-servers/xorg-vfbserver/xorg-server-1.20.13/hw/xfree86/glamor_egl/
H A Dglamor_xf86_xv.c50 {15, TrueColor}, {16, TrueColor}, {24, TrueColor}, {30, TrueColor}
/dports/x11-servers/xorg-server/xorg-server-1.20.13/hw/xfree86/glamor_egl/
H A Dglamor_xf86_xv.c50 {15, TrueColor}, {16, TrueColor}, {24, TrueColor}, {30, TrueColor}
/dports/x11-servers/xarcan/xarcan-0.6.0/hw/xfree86/glamor_egl/
H A Dglamor_xf86_xv.c50 {15, TrueColor}, {16, TrueColor}, {24, TrueColor}, {30, TrueColor}
/dports/x11/xscreensaver/xscreensaver-5.44/utils/
H A Dvisual.c77 else if (!strcmp (v, "truecolor")) vclass = TrueColor; in get_visual()
118 if (class != TrueColor && in get_visual()
193 if ((visual = pick_best_visual_of_class (screen, TrueColor)) && in pick_best_visual()
203 TRY_CLASS(TrueColor); in pick_best_visual()
304 vi_in.class = TrueColor; in pick_best_gl_visual()
320 vi_in.class = TrueColor; in pick_best_gl_visual()
332 result = pick_best_visual_of_class (screen, TrueColor); in pick_best_gl_visual()
451 case TrueColor: /* Fixed colors. */ in has_writable_cells()
474 vi_out->class == TrueColor ? "TrueColor, " : in describe_visual()
/dports/x11-clocks/xdaliclock/xdaliclock-2.44/X11/
H A Dvisual.c87 else if (!strcmp (v, "truecolor")) vclass = TrueColor; in get_visual()
128 if (class != TrueColor && in get_visual()
203 if ((visual = pick_best_visual_of_class (screen, TrueColor)) && in pick_best_visual()
213 TRY_CLASS(TrueColor); in pick_best_visual()
314 vi_in.class = TrueColor; in pick_best_gl_visual()
330 vi_in.class = TrueColor; in pick_best_gl_visual()
342 result = pick_best_visual_of_class (screen, TrueColor); in pick_best_gl_visual()
446 case TrueColor: /* Fixed colors. */ in has_writable_cells()
479 vi_out->class == TrueColor ? "TrueColor, " : in describe_visual()

12345678910>>...82