Advertisement
carpincho

Untitled

Apr 3rd, 2020
349
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 2.43 KB | None | 0 0
  1. gray: {
  2.         100: '#f7fafc',
  3.         200: '#edf2f7',
  4.         300: '#e2e8f0',
  5.         400: '#cbd5e0',
  6.         500: '#a0aec0',
  7.         600: '#718096',
  8.         700: '#4a5568',
  9.         800: '#2d3748',
  10.         900: '#1a202c',
  11.       },
  12.       red: {
  13.         100: '#fff5f5',
  14.         200: '#fed7d7',
  15.         300: '#feb2b2',
  16.         400: '#fc8181',
  17.         500: '#f56565',
  18.         600: '#e53e3e',
  19.         700: '#c53030',
  20.         800: '#9b2c2c',
  21.         900: '#742a2a',
  22.       },
  23.       orange: {
  24.         100: '#fffaf0',
  25.         200: '#feebc8',
  26.         300: '#fbd38d',
  27.         400: '#f6ad55',
  28.         500: '#ed8936',
  29.         600: '#dd6b20',
  30.         700: '#c05621',
  31.         800: '#9c4221',
  32.         900: '#7b341e',
  33.       },
  34.       yellow: {
  35.         100: '#fffff0',
  36.         200: '#fefcbf',
  37.         300: '#faf089',
  38.         400: '#f6e05e',
  39.         500: '#ecc94b',
  40.         600: '#d69e2e',
  41.         700: '#b7791f',
  42.         800: '#975a16',
  43.         900: '#744210',
  44.       },
  45.       green: {
  46.         100: '#f0fff4',
  47.         200: '#c6f6d5',
  48.         300: '#9ae6b4',
  49.         400: '#68d391',
  50.         500: '#48bb78',
  51.         600: '#38a169',
  52.         700: '#2f855a',
  53.         800: '#276749',
  54.         900: '#22543d',
  55.       },
  56.       teal: {
  57.         100: '#e6fffa',
  58.         200: '#b2f5ea',
  59.         300: '#81e6d9',
  60.         400: '#4fd1c5',
  61.         500: '#38b2ac',
  62.         600: '#319795',
  63.         700: '#2c7a7b',
  64.         800: '#285e61',
  65.         900: '#234e52',
  66.       },
  67.       blue: {
  68.         100: '#ebf8ff',
  69.         200: '#bee3f8',
  70.         300: '#90cdf4',
  71.         400: '#63b3ed',
  72.         500: '#4299e1',
  73.         600: '#3182ce',
  74.         700: '#2b6cb0',
  75.         800: '#2c5282',
  76.         900: '#2a4365',
  77.       },
  78.       indigo: {
  79.         100: '#ebf4ff',
  80.         200: '#c3dafe',
  81.         300: '#a3bffa',
  82.         400: '#7f9cf5',
  83.         500: '#667eea',
  84.         600: '#5a67d8',
  85.         700: '#4c51bf',
  86.         800: '#434190',
  87.         900: '#3c366b',
  88.       },
  89.       purple: {
  90.         100: '#faf5ff',
  91.         200: '#e9d8fd',
  92.         300: '#d6bcfa',
  93.         400: '#b794f4',
  94.         500: '#9f7aea',
  95.         600: '#805ad5',
  96.         700: '#6b46c1',
  97.         800: '#553c9a',
  98.         900: '#44337a',
  99.       },
  100.       pink: {
  101.         100: '#fff5f7',
  102.         200: '#fed7e2',
  103.         300: '#fbb6ce',
  104.         400: '#f687b3',
  105.         500: '#ed64a6',
  106.         600: '#d53f8c',
  107.         700: '#b83280',
  108.         800: '#97266d',
  109.         900: '#702459',
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement