-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
51 lines (47 loc) · 1.79 KB
/
tailwind.config.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
/** @type {import('tailwindcss').Config} */
// tailwind.config.js
const defaultTheme = require("tailwindcss/defaultTheme");
const colors = require("tailwindcss/colors");
// export default {
// content: [
// './src/**/*.{astro,html,js,jsx,md,mdx,svelte,ts,tsx,vue}',
// ],
// darkMode: 'class',
// theme: {
// extend: {
// fontFamily: {
// sans: [
// 'Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Arial, Noto Sans, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji',
// ],
// },
// },
// },
// plugins: [],
// };
// /** @type {import('tailwindcss').Config} */
module.exports = {
content: ["./src/**/*.{astro,html,js,jsx,md,mdx,svelte,ts,tsx,vue}",'node_modules/preline/dist/*.js'],
darkMode: 'class',
// base: '/SeanBlog/',
// trailingSlash: "always",
theme: {
extend: {
fontFamily: {
sans: [
'Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Arial, Noto Sans, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji',
],
},
colors: {
// customLightTextColor: '#333333', // light mode text color
// customDarkTextColor: '#f3f4f6', // dark mode text color
// customLightLinkColor: '#1a73e8', // light mode link color
// customDarkLinkColor: '#8ab4f8', // dark mode link color
// customLightQuoteColor: '#6a737d', // light mode quote color
// customDarkQuoteColor: '#c1c1c1', // dark mode quote color
// current:'#3f3cbb'
},
},
},
variants: {},
plugins: [require("@tailwindcss/typography"),require('@tailwindcss/forms'),require("tw-elements/plugin.cjs"), require('preline/plugin')],
}