Skip to content

Colour Codes

Colour Codes

Copy colour codes from here.

Color Palette body { font-family: ‘Roboto’, sans-serif; background-color: #f8f9fa; /* Light grey background */ padding: 20px; line-height: 1.6; } .container { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); /* Responsive grid */ gap: 20px; justify-content: center; } .color-group { background: #fff; border-radius: 8px; padding: 15px; box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05); /* Subtle shadow */ } .color-title { font-weight: 500; /* Slightly bolder title */ margin-bottom: 10px; color: #333; } .color-block { background-color: #eee; /* Default background for the color preview */ border-radius: 5px; margin-bottom: 10px; padding: 15px; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; cursor: pointer; transition: transform 0.1s ease-in-out; } .color-block:hover { transform: scale(1.02); } .color-preview { width: 100%; height: 60px; border-radius: 5px; margin-bottom: 10px; box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.1); } .color-code { font-size: 0.9em; color: #555; margin-bottom: 5px; } .color-code.hex { font-weight: bold; color: #333; } .copy-feedback { position: fixed; top: 20px; left: 50%; transform: translateX(-50%); background-color: rgba(0, 0, 0, 0.8); color: white; padding: 10px 20px; border-radius: 5px; opacity: 0; transition: opacity 0.3s ease-in-out; z-index: 1000; } .copy-feedback.show { opacity: 1; }
Copied!
Primary Colors
#FFFFFF
RGB 255/255/255
CMYK 0/0/0/0
#2C5697
RGB 44/86/151
CMYK 71/43/0/41
#96C8E6
RGB 150/200/230
CMYK 35/13/0/10
#517DB9
RGB 81/125/185
CMYK 56/32/0/27
#1B365D
RGB 27/54/93
CMYK 71/42/0/64
Accent Colors
#FF5725
RGB 255/87/37
CMYK 0/66/85/0
#78439E
RGB 120/67/158
CMYK 24/58/0/38
Grey Tones
#333333
RGB 51/51/51
CMYK 0/0/0/80
#666666
RGB 102/102/102
CMYK 0/0/0/60
#CCCCCC
RGB 204/204/204
CMYK 0/0/0/20
Faculty of Arts and Humanities
#4F3D54
RGB 79/61/84
CMYK 6/27/0/67
#AB8CB2
RGB 171/140/178
CMYK 4/21/0/30
#D4BAD9
RGB 212/186/217
CMYK 2/14/0/15
Faculty of Social Studies
#6F5D58
RGB 111/93/88
CMYK 0/16/21/56
#FBA919
RGB 251/169/25
CMYK 0/33/90/2
#EDD488
RGB 237/212/136
CMYK 0/11/43/7
Faculty of Medicine
#6B1F2E
RGB 107/31/46
CMYK 0/71/57/58
#D24B5A
RGB 210/75/90
CMYK 0/64/57/18
#EBA6AB
RGB 235/166/171
CMYK 0/29/27/8
Faculty of Science and Technology
#64723C
RGB 100/114/60
CMYK 12/0/47/55
#AAC864
RGB 170/200/100
CMYK 15/0/50/22
#C3DC91
RGB 195/220/145
CMYK 11/0/34/14
Entrepreneurship Topic
#426E61
RGB 66/110/97
CMYK 40/0/12/57
#78B8AB
RGB 120/184/171
CMYK 35/0/7/28
#B0D1C9
RGB 176/209/201
CMYK 16/0/4/18
Culture Topic
#754D4D
RGB 117/77/77
CMYK 0/34/34/54
#E5877A
RGB 229/135/122
CMYK 0/41/47/10
#EBBDAD
RGB 235/189/173
CMYK 0/20/26/8
Student Life Topic
#4C7D96
RGB 76/125/150
CMYK 49/17/0/41
#7ABAE7
RGB 122/186/231
CMYK 47/20/0/9
#B7EAFA
RGB 183/234/250
CMYK 27/6/0/2
Outer Circle Colours
#6E3D5C
RGB 110/61/92
CMYK 55/82/41/25
#783038
RGB 120/48/56
CMYK 36/85/67/37
#B84D8F
RGB 184/77/143
CMYK 28/84/11/0
#C42E3B
RGB 196/46/59
CMYK 16/96/81/5
#D48FBA
RGB 212/143/186
CMYK 14/52/2/0
#F0A6AB
RGB 240/166/171
CMYK 2/42/20/0
#6B7026
RGB 107/112/38
CMYK 57/40/100/22
#426338
RGB 66/99/56
CMYK 73/39/90/30
#C7D134
RGB 199/209/52
CMYK 27/4/96/0
#61A34D
RGB 97/163/77
CMYK 67/15/94/1
#E3E88A
RGB 227/232/138
CMYK 13/0/58/0
#A3DE91
RGB 163/222/145
CMYK 37/0/56/0
#D68530
RGB 214/133/48
CMYK 14/54/95/1
#EBD933
RGB 235/217/51
CMYK 10/7/92/0
#EDB87D
RGB 237/184/125
CMYK 6/30/56/0
#F5E87A
RGB 245/232/122
CMYK 6/3/64/0
#30757D
RGB 48/117/125
CMYK 81/40/45/11
#597080
RGB 89/112/128
CMYK 69/48/38/11
#33BFD1
RGB 51/191/209
CMYK 66/0/18/0
#7A99B0
RGB 122/153/176
CMYK 55/32/22/0
#9EE5ED
RGB 158/229/237
CMYK 34/0/9/0
#A6C2D6
RGB 166/194/214
CMYK 34/15/9/0
const colorBlocks = document.querySelectorAll(‘.color-block’); const copyFeedback = document.getElementById(‘copyFeedback’); colorBlocks.forEach(block => { block.addEventListener(‘click’, function() { const codes = this.dataset.codes; if (codes) { navigator.clipboard.writeText(codes) .then(() => { copyFeedback.textContent = ‘Copied all codes!’; copyFeedback.classList.add(‘show’); setTimeout(() => { copyFeedback.classList.remove(‘show’); }, 1500); }) .catch(err => { console.error(‘Could not copy text: ‘, err); copyFeedback.textContent = ‘Error copying!’; copyFeedback.classList.add(‘show’); setTimeout(() => { copyFeedback.classList.remove(‘show’); }, 1500); }); } }); });


Accept Cookies