links/tailwind.config.cjs

86 lines
2.3 KiB
JavaScript
Raw Permalink Normal View History

2023-01-06 20:14:29 +01:00
/** @type {import('tailwindcss').Config} */
module.exports = {
2023-04-01 11:21:00 +02:00
content: ["./src/**/*.{astro,html,js,jsx,md,mdx,svelte,ts,tsx,vue}"],
theme: {
extend: {
colors: {
adobe: "#ff0000",
airbnb: "#fd5c63",
algolia: "#050f2c",
amazon: "#ff9900",
android: "#a4c639",
atlassian: "#003366",
behance: "#1769ff",
codepen: "#0ebeff",
dailymotion: "#00aaff",
tiktok: "#fe3f69",
deviantart: "#05cc47",
discord: "#5865F2",
dribbble: "#ea4c89",
dropbox: "#007ee5",
duolingo: "#7ac70c",
etsy: "#d5641c",
evernote: "#2dbe60",
facebook: "#3b5998",
feedly: "#2bb24c",
github: "#333",
gitlab: "#fc6d26",
google: "#4285f4",
instagram: "#e1306c",
linkedin: "#0077b5",
medium: "#00ab6c",
messenger: "#0084ff",
microsoft: "#f65314",
netflix: "#e50914",
pinterest: "#e60023",
pocket: "#ef4056",
react: "#00d8ff",
reddit: "#ff4500",
shopify: "#96bf48",
skype: "#00aff0",
slack: "#611f69",
snapchat: "#fffc00",
spotify: "#1db954",
stackoverflow: "#f48024",
stripe: "#6772e5",
telegram: "#0088cc",
trello: "#0079bf",
tumblr: "#35465c",
twitch: "#6441a5",
twitter: "#1da1f2",
uber: "#09091a",
ubuntu: "#dd4814",
vimeo: "#162221",
vue: "#42b883",
whatsapp: "#075e54",
wikipedia: "#000000",
youtube: "#ff0000",
// custom services
2024-07-23 21:52:55 +02:00
sourcehut: "#666666",
2023-05-06 20:45:05 +02:00
kofi: "#e0293e",
2024-01-11 15:31:31 +01:00
hackerone: "#1832FE",
2023-04-01 11:21:00 +02:00
chess: "#5e8949",
2023-06-14 19:15:31 +02:00
wakatime: "#4a4a4a",
2023-07-17 19:13:07 +02:00
website: "#e8b217",
2023-08-22 12:11:21 +02:00
modrinth: "#1bd96a",
2024-04-02 19:30:20 +02:00
gerlachsnezka: "#e84646",
2024-04-12 14:53:23 +02:00
minecraft: "#6F4E37",
2023-04-01 11:21:00 +02:00
// ^ custom services
transparent: "transparent",
current: "currentColor",
black: "#000",
white: "#fff",
blue: "#44C3EC",
},
backgroundImage: {
primaryDotted: "radial-gradient(#E6E6D1 1px, #F9F9F1 1px)",
2023-04-01 11:58:19 +02:00
primaryDottedFooter: "radial-gradient(#D5D5B8 1px, #ECECE2 1px)",
2023-04-01 11:21:00 +02:00
},
backgroundSize: {
primaryDottedSize: "15px 15px",
},
},
},
plugins: [],
2023-01-06 21:30:48 +01:00
};