Welcome to mirror list, hosted at ThFree Co, Russian Federation.

tailwind.config.js - github.com/gohugoio/hugoTestModule2.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: b624f6cdb4a790efdbf4f939f9637e3817b136c4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
console.warn('In tailwind.config.js, root.');

const { colors } = require('tailwindcss/defaultTheme');

module.exports = {
	theme: {
		colors: {
			pretty: '#5c6ac4'
		},
		extend: {
			colors: {
				blue: {
					...colors.blue,
					'900': '#1e3656'
				}
			}
		}
	}
};