decanter
Version:
Design System Tailwind CSS Preset.
34 lines (33 loc) • 672 B
JavaScript
/**
* Font Family Defaults.
*/
module.exports = function () {
return {
mono: ['"Roboto Mono"', 'Menlo', '"Courier New"', 'monospace'],
sans: [
'"Source Sans 3"',
'"Source Sans Pro"',
'"Helvetica Neue"',
'Helvetica',
'Arial',
'sans-serif',
],
serif: [
'"Source Serif 4"',
'"Source Serif Pro"',
'Georgia',
'Times',
'"Times New Roman"',
'serif',
],
slab: ['"Roboto Slab"', 'Georgia', 'Times', '"Times New Roman"', 'serif'],
stanford: [
'Stanford',
'"Source Serif Pro"',
'Georgia',
'Times',
'"Times New Roman"',
'serif',
],
};
};