From cb8ad1178abee37f93485e0de673490994e6080a Mon Sep 17 00:00:00 2001 From: Oliver Davies Date: Wed, 17 Feb 2021 22:01:42 +0000 Subject: [PATCH] Task 4 - Add our own configuration --- tailwind.config.js | 22 +++++++++++++++++++++- 1 file changed, 21 insertions(+), 1 deletion(-) diff --git a/tailwind.config.js b/tailwind.config.js index eb924ba..4a88829 100644 --- a/tailwind.config.js +++ b/tailwind.config.js @@ -2,7 +2,27 @@ module.exports = { purge: [], darkMode: false, // or 'media' or 'class' theme: { - extend: {}, + fontFamily: { + display: ['Bebas Neue', 'Arial Narrow', 'Arial', 'sans-serif'], + sans: ['Helvetica', 'Arial', 'sans-serif'], + }, + colors: { + blue: { + DEFAULT: '#56a9db', + dark: '#1772ae', + }, + gray: { + dark: '#333333', + }, + orange: '#fcb040', + white: '#ffffff', + }, + extend: { + fontSize: { + '2xl': '1.5625rem', // 25px + '3xl': '1.6875rem', // 27px + }, + }, }, variants: { extend: {},