@@ -4,19 +4,19 @@ pub(crate) const CHARS: [char; LUT_SIZE] = ['#', '$', '%', '&', '@'];
44
55pub ( crate ) const BLACK : & str = "\x1B [30m" ;
66pub ( crate ) const RED : & str = "\x1B [31m" ;
7- // pub(crate) const BRIGHT_RED: &str = "\x1B[91m";
7+ pub ( crate ) const BRIGHT_RED : & str = "\x1B [91m" ;
88pub ( crate ) const GREEN : & str = "\x1B [32m" ;
9- // pub(crate) const BRIGHT_GREEN: &str = "\x1B[92m";
9+ pub ( crate ) const BRIGHT_GREEN : & str = "\x1B [92m" ;
1010pub ( crate ) const YELLOW : & str = "\x1B [33m" ;
11- // pub(crate) const BRIGHT_YELLOW: &str = "\x1B[93m";
11+ pub ( crate ) const BRIGHT_YELLOW : & str = "\x1B [93m" ;
1212pub ( crate ) const BLUE : & str = "\x1B [34m" ;
13- // pub(crate) const BRIGHT_BLUE: &str = "\x1B[94m";
13+ pub ( crate ) const BRIGHT_BLUE : & str = "\x1B [94m" ;
1414// pub(crate) const MAGENTA: &str = "\x1B[35m";
1515// pub(crate) const BRIGHT_MAGENTA: &str = "\x1B[95m";
1616pub ( crate ) const CYAN : & str = "\x1B [36m" ;
17- // pub(crate) const BRIGHT_CYAN: &str = "\x1B[96m";
17+ pub ( crate ) const BRIGHT_CYAN : & str = "\x1B [96m" ;
1818pub ( crate ) const WHITE : & str = "\x1B [37m" ;
19- // pub(crate) const BRIGHT_WHITE: &str = "\x1B[97m";
19+ pub ( crate ) const BRIGHT_WHITE : & str = "\x1B [97m" ;
2020
2121pub ( crate ) const VULKAN : & [ & str ] = & [
2222 r#" ################ "# ,
@@ -35,6 +35,7 @@ pub(crate) const VULKAN: &[&str] = &[
3535] ;
3636
3737pub ( crate ) const VULKAN_STYLE : [ & str ; LUT_SIZE ] = [ RED , "" , "" , "" , BLACK ] ;
38+ pub ( crate ) const VULKAN_STYLE_ALT : [ & str ; LUT_SIZE ] = [ BRIGHT_RED , "" , "" , "" , BLACK ] ;
3839
3940pub ( crate ) const APPLE : & [ & str ] = & [
4041 r#" ### "# ,
@@ -55,6 +56,7 @@ pub(crate) const APPLE: &[&str] = &[
5556] ;
5657
5758pub ( crate ) const APPLE_STYLE : [ & str ; LUT_SIZE ] = [ WHITE , "" , "" , "" , BLACK ] ;
59+ pub ( crate ) const APPLE_STYLE_ALT : [ & str ; LUT_SIZE ] = [ BRIGHT_WHITE , "" , "" , "" , BLACK ] ;
5860
5961pub ( crate ) const GOOGLE : & [ & str ] = & [
6062 r#" ######### "# ,
@@ -77,6 +79,8 @@ pub(crate) const GOOGLE: &[&str] = &[
7779] ;
7880
7981pub ( crate ) const GOOGLE_STYLE : [ & str ; LUT_SIZE ] = [ RED , BLUE , GREEN , YELLOW , BLACK ] ;
82+ pub ( crate ) const GOOGLE_STYLE_ALT : [ & str ; LUT_SIZE ] =
83+ [ BRIGHT_RED , BRIGHT_BLUE , BRIGHT_GREEN , BRIGHT_YELLOW , BLACK ] ;
8084
8185pub ( crate ) const INTEL : & [ & str ] = & [
8286 r#" $$$ ### "# ,
@@ -91,6 +95,7 @@ pub(crate) const INTEL: &[&str] = &[
9195] ;
9296
9397pub ( crate ) const INTEL_STYLE : [ & str ; LUT_SIZE ] = [ WHITE , CYAN , "" , "" , BLACK ] ;
98+ pub ( crate ) const INTEL_STYLE_ALT : [ & str ; LUT_SIZE ] = [ BRIGHT_WHITE , BRIGHT_CYAN , "" , "" , BLACK ] ;
9499
95100pub ( crate ) const NVIDIA : & [ & str ] = & [
96101 r#" #########################"# ,
@@ -108,6 +113,7 @@ pub(crate) const NVIDIA: &[&str] = &[
108113] ;
109114
110115pub ( crate ) const NVIDIA_STYLE : [ & str ; LUT_SIZE ] = [ GREEN , "" , "" , "" , BLACK ] ;
116+ pub ( crate ) const NVIDIA_STYLE_ALT : [ & str ; LUT_SIZE ] = [ BRIGHT_GREEN , "" , "" , "" , BLACK ] ;
111117
112118pub ( crate ) const AMD : & [ & str ] = & [
113119 r#" ### ### ### ######### $$$$$$$$$"# ,
@@ -119,6 +125,7 @@ pub(crate) const AMD: &[&str] = &[
119125] ;
120126
121127pub ( crate ) const AMD_STYLE : [ & str ; LUT_SIZE ] = [ WHITE , GREEN , "" , "" , BLACK ] ;
128+ pub ( crate ) const AMD_STYLE_ALT : [ & str ; LUT_SIZE ] = [ BRIGHT_WHITE , BRIGHT_GREEN , "" , "" , BLACK ] ;
122129
123130pub ( crate ) const ARM : & [ & str ] = & [
124131 r#" ### ######## ### ### "# ,
@@ -130,6 +137,7 @@ pub(crate) const ARM: &[&str] = &[
130137] ;
131138
132139pub ( crate ) const ARM_STYLE : [ & str ; LUT_SIZE ] = [ RED , "" , "" , "" , BLACK ] ;
140+ pub ( crate ) const ARM_STYLE_ALT : [ & str ; LUT_SIZE ] = [ BRIGHT_RED , "" , "" , "" , BLACK ] ;
133141
134142// pub(crate) const MESA: &[&str] = &[
135143// r#" ### ### $$$$$$$$ %%%%%%%% &&& "#,
@@ -160,6 +168,8 @@ pub(crate) const MICROSOFT: &[&str] = &[
160168] ;
161169
162170pub ( crate ) const MICROSOFT_STYLE : [ & str ; LUT_SIZE ] = [ RED , GREEN , BLUE , YELLOW , "" ] ;
171+ pub ( crate ) const MICROSOFT_STYLE_ALT : [ & str ; LUT_SIZE ] =
172+ [ BRIGHT_RED , BRIGHT_GREEN , BRIGHT_BLUE , BRIGHT_YELLOW , "" ] ;
163173
164174pub ( crate ) const QUALCOMM : & [ & str ] = & [
165175 r#" ######## "# ,
@@ -180,3 +190,4 @@ pub(crate) const QUALCOMM: &[&str] = &[
180190] ;
181191
182192pub ( crate ) const QUALCOMM_STYLE : [ & str ; LUT_SIZE ] = [ BLUE , "" , "" , "" , "" ] ;
193+ pub ( crate ) const QUALCOMM_STYLE_ALT : [ & str ; LUT_SIZE ] = [ BRIGHT_BLUE , "" , "" , "" , "" ] ;
0 commit comments