Skip to content

Instantly share code, notes, and snippets.

@leMaur
Created September 5, 2019 07:04
Show Gist options
  • Save leMaur/23174df9f517a506ed593fecdf0259ae to your computer and use it in GitHub Desktop.
Save leMaur/23174df9f517a506ed593fecdf0259ae to your computer and use it in GitHub Desktop.
Custom colors for Tailwindcss taken from Mineral-ui project
// ******************************
// https://mineral-ui.com/color
// ******************************
module.exports = {
colors: {
transparent: 'transparent',
black: '#1d1f24',
white: '#ffffff',
gray: {
100: '#f5f7fa',
200: '#ebeff5',
300: '#dde3ed',
400: '#c8d1e0',
500: '#afbacc',
600: '#8e99ab',
700: '#707a8a',
800: '#58606e',
900: '#434a54',
1000: '#333840',
},
dusk: {
100: '#f4f2f7',
200: '#e3dcf7',
300: '#cec2f0',
400: '#b5a6e3',
500: '#9886cf',
600: '#7a68b3',
700: '#645396',
800: '#4f4178',
900: '#3a3154',
1000: '#282436',
},
slate: {
100: '#edf4f7',
200: '#cbe3f5',
300: '#a7ceeb',
400: '#84b7db',
500: '#5e95bd',
600: '#48799c',
700: '#376180',
800: '#2d4d63',
900: '#243947',
1000: '#1d2830',
},
bronze: {
100: '#fcf2e6',
200: '#fad8af',
300: '#f5bc76',
400: '#e89c3f',
500: '#cf7911',
600: '#ad5f00',
700: '#8a4d03',
800: '#693d07',
900: '#4d2f0b',
1000: '#33210c',
},
green: {
100: '#e1faeb',
200: '#abedc5',
300: '#7ddba3',
400: '#57c282',
500: '#3ba164',
600: '#2a854e',
700: '#20693d',
800: '#1a5230',
900: '#153d25',
1000: '#112b1b',
},
teal: {
100: '#e4f7f6',
200: '#a8ede9',
300: '#6cd9d2',
400: '#45bfb7',
500: '#28a199',
600: '#17827b',
700: '#116963',
800: '#0d524d',
900: '#0b3d3a',
1000: '#092b29',
},
sky: {
100: '#e8f4fa',
200: '#bbe5fa',
300: '#8dd4f7',
400: '#53baed',
500: '#229ad6',
600: '#0c7bb3',
700: '#066391',
800: '#064d70',
900: '#093952',
1000: '#0c2938',
},
blue: {
100: '#f0f5fc',
200: '#cfe0fc',
300: '#accbfc',
400: '#84b1fa',
500: '#5691f0',
600: '#3272d9',
700: '#1d5bbf',
800: '#114599',
900: '#103570',
1000: '#15233b',
},
indigo: {
100: '#f2f2fc',
200: '#dcdcfc',
300: '#c2c2fc',
400: '#a7a7fa',
500: '#8585f2',
600: '#6767e6',
700: '#4d4dd1',
800: '#3737b3',
900: '#28288a',
1000: '#202057',
},
purple: {
100: '#f5f0fa',
200: '#ead9fa',
300: '#dabcf7',
400: '#c79bf2',
500: '#ae74e8',
600: '#9656d6',
700: '#7d3cbd',
800: '#642b9e',
900: '#4b2175',
1000: '#371c52',
},
magenta: {
100: '#faf0f4',
200: '#fad4e4',
300: '#fab4d1',
400: '#f78bb8',
500: '#ed5393',
600: '#d6246e',
700: '#b01355',
800: '#8a1244',
900: '#611535',
1000: '#421527',
},
red: {
100: '#faf0f0',
200: '#fad4d4',
300: '#fab6b6',
400: '#fa8e8e',
500: '#f55353',
600: '#de1b1b',
700: '#b80d0d',
800: '#8f0e0e',
900: '#661414',
1000: '#451717',
},
},
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment