Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 546 for Colors (0.2 sec)

  1. logo/colors.md

    # Official Colors
    
    The kubernetes logo has an official blue color.  When reproducing the logo, please use the official color, when possible.
    
    ## Pantone
    
    When possible, the Pantone color is preferred for print material.  The official Pantone color is *285C*.
    
    ## RGB
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jan 16 06:15:43 UTC 2021
    - 331 bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/samples/templates/java-android-application/app/src/main/res/values/colors.xml

    <?xml version="1.0" encoding="utf-8"?>
    <resources>
        <color name="colorPrimary">#008577</color>
        <color name="colorPrimaryDark">#00574B</color>
        <color name="colorAccent">#D81B60</color>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 208 bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/samples/templates/java-android-application/src/main/res/values/colors.xml

    <?xml version="1.0" encoding="utf-8"?>
    <resources>
        <color name="colorPrimary">#008577</color>
        <color name="colorPrimaryDark">#00574B</color>
        <color name="colorAccent">#D81B60</color>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 208 bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/snippets/kotlinDsl/androidSingleBuild/kotlin/src/main/res/values/colors.xml

    <?xml version="1.0" encoding="utf-8"?>
    <resources>
        <color name="colorPrimary">#3F51B5</color>
        <color name="colorPrimaryDark">#303F9F</color>
        <color name="colorAccent">#FF4081</color>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 208 bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/snippets/kotlinDsl/androidBuild/kotlin/app/src/main/res/values/colors.xml

    <?xml version="1.0" encoding="utf-8"?>
    <resources>
        <color name="colorPrimary">#3F51B5</color>
        <color name="colorPrimaryDark">#303F9F</color>
        <color name="colorAccent">#FF4081</color>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 208 bytes
    - Viewed (0)
  6. platforms/core-runtime/logging/src/main/java/org/gradle/internal/logging/console/DefaultColorMap.java

            }
        }
    
        private static class CompositeColor implements Color {
            private final List<Color> colors;
    
            public CompositeColor(List<Color> colors) {
                this.colors = colors;
            }
    
            @Override
            public void on(Ansi ansi) {
                for (Color color : colors) {
                    color.on(ansi);
                }
            }
    
            @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 13:09:37 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  7. src/expvar/expvar_test.go

    func TestMapInit(t *testing.T) {
    	RemoveAll()
    	colors := NewMap("bike-shed-colors")
    	colors.Add("red", 1)
    	colors.Add("blue", 1)
    	colors.Add("chartreuse", 1)
    
    	n := 0
    	colors.Do(func(KeyValue) { n++ })
    	if n != 3 {
    		t.Errorf("after three Add calls with distinct keys, Do should invoke f 3 times; got %v", n)
    	}
    
    	colors.Init()
    
    	n = 0
    	colors.Do(func(KeyValue) { n++ })
    	if n != 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 04 14:46:19 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  8. src/encoding/json/example_test.go

    	{"Space": "YCbCr", "Point": {"Y": 255, "Cb": 0, "Cr": -10}},
    	{"Space": "RGB",   "Point": {"R": 98, "G": 218, "B": 255}}
    ]`)
    	var colors []Color
    	err := json.Unmarshal(j, &colors)
    	if err != nil {
    		log.Fatalln("error:", err)
    	}
    
    	for _, c := range colors {
    		var dst any
    		switch c.Space {
    		case "RGB":
    			dst = new(RGB)
    		case "YCbCr":
    			dst = new(YCbCr)
    		}
    		err := json.Unmarshal(c.Point, dst)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 13 18:45:54 UTC 2021
    - 6.1K bytes
    - Viewed (0)
  9. src/image/color/ycbcr_test.go

    		}
    	}
    }
    
    // TestYCbCrGray tests that YCbCr colors are a superset of Gray colors.
    func TestYCbCrGray(t *testing.T) {
    	for i := 0; i < 256; i++ {
    		c0 := YCbCr{uint8(i), 0x80, 0x80}
    		c1 := Gray{uint8(i)}
    		if err := eq(c0, c1); err != nil {
    			t.Errorf("i=0x%02x:\n%v", i, err)
    		}
    	}
    }
    
    // TestNYCbCrAAlpha tests that NYCbCrA colors are a superset of Alpha colors.
    func TestNYCbCrAAlpha(t *testing.T) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 25 07:51:17 UTC 2016
    - 7.3K bytes
    - Viewed (0)
  10. src/cmd/cover/html.go

    }
    
    // colors generates the CSS rules for coverage colors.
    func colors() template.CSS {
    	var buf strings.Builder
    	for i := 0; i < 11; i++ {
    		fmt.Fprintf(&buf, ".cov%v { color: %v }\n", i, rgb(i))
    	}
    	return template.CSS(buf.String())
    }
    
    var htmlTemplate = template.Must(template.New("html").Funcs(template.FuncMap{
    	"colors": colors,
    }).Parse(tmplHTML))
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 08 14:33:36 UTC 2022
    - 6.8K bytes
    - Viewed (0)
Back to top