⬆️ v3.0.0 (#704)

This commit is contained in:
Luke Vella 2023-06-19 17:17:00 +01:00 committed by GitHub
parent 735056f25f
commit c22b3abc4d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
385 changed files with 19912 additions and 5250 deletions

View file

@ -1,13 +1,64 @@
const colors = require("tailwindcss/colors");
const defaultTheme = require("tailwindcss/defaultTheme");
module.exports = {
content: [
"./src/pages/**/*.{ts,tsx}",
"./src/components/**/*.{ts,tsx}",
"../../packages/tailwind-config/tailwind.config.js",
"../../packages/ui/**/*.{ts,tsx}",
],
plugins: [
require("@tailwindcss/typography"),
require("tailwindcss-animate"),
require("tailwind-scrollbar"),
],
theme: {
extend: {
boxShadow: {
huge: "0px 51px 78px rgb(17 7 53 / 5%), 0px 21.3066px 35.4944px rgb(17 7 53 / 4%), 0px 11.3915px 18.9418px rgb(17 7 53 / 3%), 0px 6.38599px 9.8801px rgb(17 7 53 / 3%), 0px 3.39155px 4.58665px rgb(17 7 53 / 2%), 0px 1.4113px 1.55262px rgb(17 7 53 / 1%), inset 0px 1px 0px rgb(41 56 78 / 5%)",
},
colors: {
primary: colors.indigo,
primary: {
...colors.indigo,
DEFAULT: colors.indigo["600"],
foreground: colors.indigo["600"],
background: colors.indigo["50"],
},
gray: colors.gray,
border: colors.gray["200"],
input: {
DEFAULT: colors.gray["200"],
background: colors.white,
foreground: colors.gray["800"],
},
ring: {
DEFAULT: colors.gray["300"],
},
destructive: {
DEFAULT: colors.rose["600"],
background: colors.rose["50"],
foreground: colors.rose["50"],
},
background: colors.gray["100"],
foreground: colors.gray["800"],
accent: {
DEFAULT: colors.gray["100"],
},
muted: {
DEFAULT: colors.gray["200"],
background: colors.gray["50"],
foreground: colors.gray["500"],
},
popover: {
DEFAULT: colors.white,
foreground: colors.gray["800"],
},
card: {
DEFAULT: colors.white,
background: colors.white,
foreground: colors.gray["800"],
},
},
keyframes: {
wiggle: {
@ -37,6 +88,9 @@ module.exports = {
"in-expo": "cubic-bezier(0.68, -0.6, 0.32, 1.6)",
"out-expo": "cubic-bezier(0.19, 1, 0.22, 1)",
},
fontFamily: {
sans: ["var(--font-inter)", ...defaultTheme.fontFamily.sans],
},
},
},
};