Skip to content

Instantly share code, notes, and snippets.

@local-interloper
Created September 7, 2023 21:52
Show Gist options
  • Save local-interloper/05bee551fcc3ea5528ec8fcc19464ed0 to your computer and use it in GitHub Desktop.
Save local-interloper/05bee551fcc3ea5528ec8fcc19464ed0 to your computer and use it in GitHub Desktop.
Nord Tailwind
import type { Config } from 'tailwindcss'
const config: Config = {
content: [
'./src/pages/**/*.{js,ts,jsx,tsx,mdx}',
'./src/components/**/*.{js,ts,jsx,tsx,mdx}',
'./src/app/**/*.{js,ts,jsx,tsx,mdx}',
],
theme: {
extend: {
colors: {
"polar-night-0": "#2E3440",
"polar-night-1": "#3B4252",
"polar-night-2": "#434C5E",
"polar-night-3": "#4C566A",
"snow-storm-0": "#D8DEE9",
"snow-storm-1": "#E5E9F0",
"snow-storm-2": "#ECEFF4",
"frost-0": "#5E81AC",
"frost-1": "#81A1C1",
"frost-2": "#88C0D0",
"frost-3": "#8FBCBB",
"aurora-red": "#BF616A",
"aurora-orange": "#D08770",
"aurora-yellow": "#EBCB8B",
"aurora-green": "#A3BE8C",
"aurora-purple": "#B48EAD",
}
},
},
plugins: [],
}
export default config
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment