aboutsummaryrefslogtreecommitdiff
path: root/tailwind.config.js
diff options
context:
space:
mode:
authorIndrajith K L2022-11-20 04:59:39 +0530
committerIndrajith K L2022-11-20 04:59:39 +0530
commitff11d9e237e51a5eb40690e44f690108ac7175b7 (patch)
treea6db124e19c9f3ae5dfffe3bc1e8d4028e8225ce /tailwind.config.js
parent143915cc03764082fd97d484fd3c0f3b7c018c89 (diff)
downloadindrajith-dev-feature/remove-tailwind.tar.gz
indrajith-dev-feature/remove-tailwind.tar.bz2
indrajith-dev-feature/remove-tailwind.zip
* Full Rewrite * Removed Tailwind CSS * Stripdowned to barebone css
Diffstat (limited to 'tailwind.config.js')
-rw-r--r--tailwind.config.js43
1 files changed, 0 insertions, 43 deletions
diff --git a/tailwind.config.js b/tailwind.config.js
deleted file mode 100644
index 416c76e..0000000
--- a/tailwind.config.js
+++ /dev/null
@@ -1,43 +0,0 @@
-/** @type {import('tailwindcss').Config} */
-module.exports = {
- content: [
- "./src/**/*.{njk,md,html}",
- "./src/**/*.svg",
- "./src/_includes/assets/css/*.css",
- "./public/index.html"
- ],
- theme: {
- extend: {
- fontFamily: {
- "supply-regular": ["supplyRegular", "sans-serif"],
- "supply-light": ["supplyLight", "sans-serif"],
- },
- colors: {
- darkish: {
- 50: '#8d697a',
- 100: '#544e68',
- 200: '#203c56',
- 300: '#0d2b45'
- },
- lightish: {
- 50: '#ffecd6',
- 100: '#ffd4a3',
- 200: '#ffaa5e',
- 300: '#d08159'
- },
- main: {
- 'cream-white-1': "#fffffe",
- 'dark-brown': "#33272a",
- 'normal-brown': "#594a4e",
- 'cream-white-2': "#faeee7",
- 'dark-brown-2': "#33272a",
- 'red': "#ff8ba7"
- }
- }
- },
- },
- plugins: [
- require('@tailwindcss/line-clamp'),
- require('@tailwindcss/forms'),
- ],
-};