Created
September 28, 2020 12:32
-
-
Save thomasloven/925b5abc397d7b60bad99a17aba75ebe to your computer and use it in GitHub Desktop.
Turn light on to random color name
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
- variables: | |
color: >- | |
{{["aliceblue", "antiquewhite", "aqua", "aquamarine", "azure", "beige", | |
"bisque", "black", "blanchedalmond", "blue", "blueviolet", "brown", | |
"burlywood", "cadetblue", "chartreuse", "chocolate", "coral", | |
"cornflowerblue", "cornsilk", "crimson", "cyan", "darkblue", "darkcyan", | |
"darkgoldenrod", "darkgray", "darkgreen", "darkgrey", "darkkhaki", | |
"darkmagenta", "darkolivegreen", "darkorange", "darkorchid", "darkred", | |
"darksalmon", "darkseagreen", "darkslateblue", "darkslategray", | |
"darkslategrey", "darkturquoise", "darkviolet", "deeppink", "deepskyblue", | |
"dimgray", "dimgrey", "dodgerblue", "firebrick", "floralwhite", | |
"forestgreen", "fuchsia", "gainsboro", "ghostwhite", "gold", "goldenrod", | |
"gray", "green", "greenyellow", "grey", "honeydew", "hotpink", "indianred", | |
"indigo", "ivory", "khaki", "lavender", "lavenderblush", "lawngreen", | |
"lemonchiffon", "lightblue", "lightcoral", "lightcyan", | |
"lightgoldenrodyellow", "lightgray", "lightgreen", "lightgrey", "lightpink", | |
"lightsalmon", "lightseagreen", "lightskyblue", "lightslategray", | |
"lightslategrey", "lightsteelblue", "lightyellow", "lime", "limegreen", | |
"linen", "magenta", "maroon", "mediumaquamarine", "mediumblue", | |
"mediumorchid", "mediumpurple", "mediumseagreen", "mediumslateblue", | |
"mediumspringgreen", "mediumturquoise", "mediumvioletred", "midnightblue", | |
"mintcream", "mistyrose", "moccasin", "navajowhite", "navy", "navyblue", | |
"oldlace", "olive", "olivedrab", "orange", "orangered", "orchid", | |
"palegoldenrod", "palegreen", "paleturquoise", "palevioletred", | |
"papayawhip", "peachpuff", "peru", "pink", "plum", "powderblue", "purple", | |
"red", "rosybrown", "royalblue", "saddlebrown", "salmon", "sandybrown", | |
"seagreen", "seashell", "sienna", "silver", "skyblue", "slateblue", | |
"slategray", "slategrey", "snow", "springgreen", "steelblue", "tan", "teal", | |
"thistle", "tomato", "turquoise", "violet", "wheat", "white", "whitesmoke", | |
"yellow", "yellowgreen", ] | random }} | |
- service: light.turn_on | |
data: | |
entity_id: light.my_light | |
color_name: "{{ color }}" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment