Skip to content

Instantly share code, notes, and snippets.

@adamwathan
Last active December 7, 2020 22:27
Show Gist options
  • Star 2 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save adamwathan/24341b9b2490ac99105a2aeecab73b92 to your computer and use it in GitHub Desktop.
Save adamwathan/24341b9b2490ac99105a2aeecab73b92 to your computer and use it in GitHub Desktop.
Tailwind UI for Tailwind CSS v1.0 Configuration
// tailwind.config.js
module.exports = {
theme: {
colors: {
current: "currentColor",
transparent: "transparent",
white: "#ffffff",
black: "#000000",
gray: {
50: "#f9fafb",
100: "#f4f5f7",
200: "#e5e7eb",
300: "#d2d6dc",
400: "#9fa6b2",
500: "#6b7280",
600: "#4b5563",
700: "#374151",
800: "#252f3f",
900: "#161e2e",
},
red: {
50: "#fdf2f2",
100: "#fde8e8",
200: "#fbd5d5",
300: "#f8b4b4",
400: "#f98080",
500: "#f05252",
600: "#e02424",
700: "#c81e1e",
800: "#9b1c1c",
900: "#771d1d",
},
orange: {
50: "#fff8f1",
100: "#feecdc",
200: "#fcd9bd",
300: "#fdba8c",
400: "#ff8a4c",
500: "#ff5a1f",
600: "#d03801",
700: "#b43403",
800: "#8a2c0d",
900: "#73230d",
},
yellow: {
50: "#fdfdea",
100: "#fdf6b2",
200: "#fce96a",
300: "#faca15",
400: "#e3a008",
500: "#c27803",
600: "#9f580a",
700: "#8e4b10",
800: "#723b13",
900: "#633112",
},
green: {
50: "#f3faf7",
100: "#def7ec",
200: "#bcf0da",
300: "#84e1bc",
400: "#31c48d",
500: "#0e9f6e",
600: "#057a55",
700: "#046c4e",
800: "#03543f",
900: "#014737",
},
teal: {
50: "#edfafa",
100: "#d5f5f6",
200: "#afecef",
300: "#7edce2",
400: "#16bdca",
500: "#0694a2",
600: "#047481",
700: "#036672",
800: "#05505c",
900: "#014451",
},
blue: {
50: "#ebf5ff",
100: "#e1effe",
200: "#c3ddfd",
300: "#a4cafe",
400: "#76a9fa",
500: "#3f83f8",
600: "#1c64f2",
700: "#1a56db",
800: "#1e429f",
900: "#233876",
},
indigo: {
50: "#f0f5ff",
100: "#e5edff",
200: "#cddbfe",
300: "#b4c6fc",
400: "#8da2fb",
500: "#6875f5",
600: "#5850ec",
700: "#5145cd",
800: "#42389d",
900: "#362f78",
},
purple: {
50: "#f6f5ff",
100: "#edebfe",
200: "#dcd7fe",
300: "#cabffd",
400: "#ac94fa",
500: "#9061f9",
600: "#7e3af2",
700: "#6c2bd9",
800: "#5521b5",
900: "#4a1d96",
},
pink: {
50: "#fdf2f8",
100: "#fce8f3",
200: "#fad1e8",
300: "#f8b4d9",
400: "#f17eb8",
500: "#e74694",
600: "#d61f69",
700: "#bf125d",
800: "#99154b",
900: "#751a3d",
},
},
},
// ...
}
@anquinn
Copy link

anquinn commented Nov 19, 2020

This is missing the colors key.

Should be:

module.exports = {
  theme: {
    colors: {
      current: "currentColor",
      transparent: "transparent",
      white: "#ffffff",
      black: "#000000",
      gray: {
        50: "#f9fafb",
        ....
      }
    }
  }
}

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment