mirror of
https://github.com/zed-industries/zed.git
synced 2024-11-08 07:35:01 +03:00
86ca442fbe
Co-Authored-By: Max Brunsfeld <maxbrunsfeld@gmail.com>
44 lines
1.5 KiB
JavaScript
44 lines
1.5 KiB
JavaScript
module.exports = {
|
|
theme: {
|
|
fontFamily: {
|
|
display: [
|
|
"Visby CF", "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"
|
|
],
|
|
body: [
|
|
"Open Sans", "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"
|
|
],
|
|
},
|
|
extend: {
|
|
typography: (theme) => ({
|
|
DEFAULT: {
|
|
css: {
|
|
h1: {
|
|
fontFamily: theme("fontFamily.display").join(", ")
|
|
},
|
|
h2: {
|
|
fontFamily: theme("fontFamily.display").join(", ")
|
|
},
|
|
h3: {
|
|
fontFamily: theme("fontFamily.display").join(", ")
|
|
},
|
|
h4: {
|
|
fontFamily: theme("fontFamily.display").join(", ")
|
|
}
|
|
}
|
|
}
|
|
})
|
|
}
|
|
},
|
|
variants: {
|
|
},
|
|
plugins: [
|
|
require('@tailwindcss/typography'),
|
|
],
|
|
purge: [
|
|
"../server/templates/**/*.hbs"
|
|
]
|
|
} |