Skip to content

Instantly share code, notes, and snippets.

View Smyekh's full-sized avatar

Smyekh Smyekh

View GitHub Profile
@Smyekh
Smyekh / css_color_data.sql
Last active October 28, 2025 14:36
SQL data script for the 'Beyond Text: Building an AI-Powered Color Matcher in Oracle FreeSQL' article.
-- 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]'))