Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 1 of 1 for fgRgb (0.01 seconds)

  1. compat/maven-embedder/src/main/java/org/fusesource/jansi/Ansi.java

            attributeOptions.add(38);
            attributeOptions.add(5);
            attributeOptions.add(color & 0xff);
            return this;
        }
    
        public Ansi fgRgb(int color) {
            return fgRgb(color >> 16, color >> 8, color);
        }
    
        public Ansi fgRgb(int r, int g, int b) {
            attributeOptions.add(38);
            attributeOptions.add(2);
            attributeOptions.add(r & 0xff);
    Created: Sun Dec 28 03:35:09 GMT 2025
    - Last Modified: Sat Apr 05 11:52:05 GMT 2025
    - 23.1K bytes
    - Click Count (0)
Back to Top