Skip to content

Instantly share code, notes, and snippets.

@TimSC
Created September 4, 2017 19:01
Show Gist options
  • Save TimSC/2466ddae171def8fa38a0baaed24356d to your computer and use it in GitHub Desktop.
Save TimSC/2466ddae171def8fa38a0baaed24356d to your computer and use it in GitHub Desktop.
DGK Color Tools DKK chart
#In LAB colour space, DGK Color Tools DKK chart
img = np.zeros((18, 1, 3))
img[0,0,:] = [100, 0, 0] #White
img[1,0,:] = [73, 0, 0] #Grey 4
img[2,0,:] = [62, 0, 0] #Grey 3
img[3,0,:] = [50, 0, 0] #Grey 2
img[4,0,:] = [38, 0, 0] #Grey 1
img[5,0,:] = [0, 0, 0] #Black
img[6,0,:] = [52, 74, 54] #Red
img[7,0,:] = [95, -6, 95] #Yellow
img[8,0,:] = [69, -43, 50] #Green
img[9,0,:] = [62, -44, -50] #Light blue
img[10,0,:] = [11, 10, -39] #Dark blue
img[11,0,:] = [52, 81, -7] #Pink
img[12,0,:] = [41, 51, 26] #Brown
img[13,0,:] = [61, 29, 57] #Brandy Punch
img[14,0,:] = [52, -24, -24] #Deep Cerulean
img[15,0,:] = [52, 47, -14] #Mulberry
img[16,0,:] = [69, 14, 17] #Tan
img[17,0,:] = [64, 12, 17] #Brandy Rose
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment