Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for fgBlack (0.03 sec)

  1. internal/color/color.go

    		if IsTerminal() {
    			return color.New(color.BgYellow).SprintfFunc()
    		}
    		return fmt.Sprintf
    	}()
    
    	Black = func() func(format string, a ...any) string {
    		if IsTerminal() {
    			return color.New(color.FgBlack).SprintfFunc()
    		}
    		return fmt.Sprintf
    	}()
    
    	FgRed = func() func(a ...any) string {
    		if IsTerminal() {
    			return color.New(color.FgRed).SprintFunc()
    		}
    		return fmt.Sprint
    	}()
    
    Registered: Sun Dec 28 19:28:13 UTC 2025
    - Last Modified: Fri Aug 29 02:39:48 UTC 2025
    - 3.6K bytes
    - Viewed (0)
  2. compat/maven-embedder/src/main/java/org/fusesource/jansi/Ansi.java

            attributeOptions.add(2);
            attributeOptions.add(r & 0xff);
            attributeOptions.add(g & 0xff);
            attributeOptions.add(b & 0xff);
            return this;
        }
    
        public Ansi fgBlack() {
            return this.fg(Color.BLACK);
        }
    
        public Ansi fgBlue() {
            return this.fg(Color.BLUE);
        }
    
        public Ansi fgCyan() {
            return this.fg(Color.CYAN);
        }
    
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Sat Apr 05 11:52:05 UTC 2025
    - 23.1K bytes
    - Viewed (0)
Back to top