This file contains hidden or 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
| -- This script populates you color data table it with the standard CSS named colors. | |
| -- Copy and paste this entire script into a single Oracle FreeSQL worksheet and run it once. | |
| INSERT ALL | |
| INTO css_colors (id, name, hex, color_vector) VALUES (1, 'AliceBlue', '#F0F8FF', VECTOR('[240, 248, 255]')) | |
| INTO css_colors (id, name, hex, color_vector) VALUES (2, 'AntiqueWhite', '#FAEBD7', VECTOR('[250, 235, 215]')) | |
| INTO css_colors (id, name, hex, color_vector) VALUES (3, 'Aqua', '#00FFFF', VECTOR('[0, 255, 255]')) | |
| INTO css_colors (id, name, hex, color_vector) VALUES (4, 'Aquamarine', '#7FFFD4', VECTOR('[127, 255, 212]')) | |
| INTO css_colors (id, name, hex, color_vector) VALUES (5, 'Azure', '#F0FFFF', VECTOR('[240, 255, 255]')) | |
| INTO css_colors (id, name, hex, color_vector) VALUES (6, 'Beige', '#F5F5DC', VECTOR('[245, 245, 220]')) |