From 67fdba7eaf6a58a9af980c2963b99383cb917344 Mon Sep 17 00:00:00 2001 From: "Krasnikov.pro" Date: Sat, 9 Jul 2022 22:49:37 +0300 Subject: [PATCH] joker --- .history/tailwind.config_20220709224930.js | 75 ++++++++++++++++++++++ tailwind.config.js | 2 +- 2 files changed, 76 insertions(+), 1 deletion(-) create mode 100644 .history/tailwind.config_20220709224930.js diff --git a/.history/tailwind.config_20220709224930.js b/.history/tailwind.config_20220709224930.js new file mode 100644 index 0000000..dfd4e1d --- /dev/null +++ b/.history/tailwind.config_20220709224930.js @@ -0,0 +1,75 @@ +const { spacing } = require('tailwindcss/defaultTheme'); + +module.exports = { + mode: 'jit', + purge: ['./pages/**/*.{js,ts,jsx,tsx}', './components/**/*.{js,ts,jsx,tsx}'], + darkMode: 'class', // or 'media' or 'class' + theme: { + extend: { + typography: (theme) => ({ + DEFAULT: { + css: { + color: theme('colors.gray.700'), + a: { + color: theme('colors.blue.500'), + '&:hover': { + color: theme('colors.blue.700'), + }, + code: { color: theme('colors.blue.400') }, + }, + 'h2,h3,h4': { + 'scroll-margin-top': spacing[32], + }, + code: { color: theme('colors.pink.500') }, + 'blockquote p:first-of-type::before': false, + 'blockquote p:last-of-type::after': false, + }, + }, + dark: { + css: { + color: theme('colors.gray.300'), + a: { + color: theme('colors.blue.400'), + '&:hover': { + color: theme('colors.blue.600'), + }, + code: { color: theme('colors.blue.400') }, + }, + blockquote: { + borderLeftColor: theme('colors.gray.800'), + color: theme('colors.gray.300'), + }, + 'h2,h3,h4': { + color: theme('colors.gray.100'), + 'scroll-margin-top': spacing[32], + }, + hr: { borderColor: theme('colors.gray.800') }, + ol: { + li: { + '&:before': { color: theme('colors.gray.500') }, + }, + }, + ul: { + li: { + '&:before': { backgroundColor: theme('colors.gray.500') }, + }, + }, + strong: { color: theme('colors.gray.300') }, + thead: { + color: theme('colors.gray.100'), + }, + tbody: { + tr: { + borderBottomColor: theme('colors.gray.700'), + }, + }, + }, + }, + }), + }, + }, + variants: { + typography: ['dark'], + }, + plugins: [require('@tailwindcss/typography')], +}; \ No newline at end of file diff --git a/tailwind.config.js b/tailwind.config.js index bd55ce1..dfd4e1d 100644 --- a/tailwind.config.js +++ b/tailwind.config.js @@ -72,4 +72,4 @@ module.exports = { typography: ['dark'], }, plugins: [require('@tailwindcss/typography')], -}; +}; \ No newline at end of file