1
Fork 0
This repository has been archived on 2024-10-07. You can view files and clone it, but cannot push or open issues or pull requests.
tic-tac-toe/tailwind.config.js

57 lines
1.1 KiB
JavaScript
Raw Normal View History

2024-05-31 14:12:54 +00:00
/** @type {import('tailwindcss').Config} */
export default {
content: ["./index.html", "./src/**/*.jsx"],
theme: {
2024-05-31 20:33:38 +00:00
colors: {
"navy-700": "#1A2A33",
"navy-400": "#1F3641",
"silver-700": "#A8BFC9",
"silver-400": "#DBE8ED",
"blue-700": "#31C3BD",
"blue-400": "#65E9E4",
"yellow-700": "#F2B137",
"yellow-400": "#FFC860",
},
fontFamily: {
sans: ["Outfit"],
},
fontSize: {
base: [
"14px",
{
letterSpacing: "0.8px",
fontWeight: "500",
},
],
"h-xs": [
"16px",
{
letterSpacing: "1px",
fontWeight: "700",
},
],
"h-s": [
"20px",
{
letterSpacing: "1.25px",
fontWeight: "700",
},
],
"h-m": [
"24px",
{
letterSpacing: "1.5px",
fontWeight: "700",
},
],
"h-l": [
"24px",
{
letterSpacing: "2.5px",
fontWeight: "700",
},
],
},
2024-05-31 14:12:54 +00:00
},
};