Last active
March 16, 2024 17:13
-
-
Save thetutlage/1a2307bfcde7b11d1aa70f989c9c1a38 to your computer and use it in GitHub Desktop.
Revisions
-
thetutlage revised this gist
Mar 16, 2024 . 1 changed file with 2 additions and 2 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -18,8 +18,8 @@ export default { gray: { 800: '#2C2B2A', 500: '#72716D', 300: '#C1BFB9', 200: '#DBD9D2', 100: '#E7E5E0', 50: '#F8F7F6', }, -
thetutlage created this gist
Mar 16, 2024 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,41 @@ /** @type {import('tailwindcss').Config} */ export default { content: ['./resources/**/*.edge', './resources/**/*.{js,ts,jsx,tsx,vue}'], theme: { extend: { fontFamily: { sans: ['Inter', 'system-ui', 'sans-serif'], }, colors: { primary: '#8E52A9', red: { 600: '#F33330', 700: '#CC2B28', }, green: { 700: '#118C37', }, gray: { 800: '#2C2B2A', 500: '#72716D', 300: '#DBD9D2', 200: '#C1BFB9', 100: '#E7E5E0', 50: '#F8F7F6', }, }, boxShadow: { DEFAULT: '0px 2px 4px rgba(44, 43, 42, 0.1)', spread: '0px 12px 32px rgba(44, 43, 42, 0.16)', }, minWidth: { 240: '240px', }, fontSize: { 'xl': ['1.375rem', '2.125rem'], '6xl': ['3.625rem', '4rem'], }, }, }, plugins: [], }