From b58cbdbe0a087671fa4bde67a114ae7576bee113 Mon Sep 17 00:00:00 2001 From: Alex Lebens Date: Mon, 11 Aug 2025 21:11:44 -0500 Subject: [PATCH] remove old files --- LICENSE.md | 23 ------------------ tailwind.config.cjs | 58 --------------------------------------------- 2 files changed, 81 deletions(-) delete mode 100644 LICENSE.md delete mode 100644 tailwind.config.cjs diff --git a/LICENSE.md b/LICENSE.md deleted file mode 100644 index f0dce42..0000000 --- a/LICENSE.md +++ /dev/null @@ -1,23 +0,0 @@ -# MIT License - -Copyright (c) 2025 Lê Vĩnh Khang - -Copyright (c) 2025 Alex Lebens - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. diff --git a/tailwind.config.cjs b/tailwind.config.cjs deleted file mode 100644 index e432f60..0000000 --- a/tailwind.config.cjs +++ /dev/null @@ -1,58 +0,0 @@ -/** @type {import('tailwindcss').Config} */ -module.exports = { - content: ['./src/**/*.{astro,html,js,jsx,md,mdx,svelte,ts,tsx,vue}', '*.{js,ts,jsx,tsx,mdx}'], - darkMode: 'class', - theme: { - extend: { - typography: (theme) => ({ - DEFAULT: { - css: { - a: { - color: theme('colors.zinc.900'), - '&:hover': { - color: theme('colors.zinc.700'), - }, - textDecoration: 'underline', - textDecorationColor: theme('colors.zinc.400'), - textUnderlineOffset: '2px', - }, - 'h1, h2, h3, h4, h5, h6': { - color: theme('colors.zinc.900'), - }, - code: { - color: theme('colors.zinc.900'), - backgroundColor: theme('colors.zinc.100'), - borderRadius: theme('borderRadius.md'), - padding: `${theme('padding.1')} ${theme('padding.1.5')}`, - }, - 'code::before': { - content: '""', - }, - 'code::after': { - content: '""', - }, - }, - }, - invert: { - css: { - a: { - color: theme('colors.zinc.100'), - '&:hover': { - color: theme('colors.zinc.300'), - }, - textDecorationColor: theme('colors.zinc.700'), - }, - 'h1, h2, h3, h4, h5, h6': { - color: theme('colors.zinc.100'), - }, - code: { - color: theme('colors.zinc.100'), - backgroundColor: theme('colors.zinc.800'), - }, - }, - }, - }), - }, - }, - plugins: [require('@tailwindcss/typography')], -};