mirror of
https://github.com/xHyroM/links.git
synced 2024-11-12 19:48:06 +01:00
refactor: configure for myself
This commit is contained in:
parent
4790f284bf
commit
ec167cd2ee
20 changed files with 5515 additions and 14054 deletions
1
.gitignore
vendored
1
.gitignore
vendored
|
@ -1,5 +1,4 @@
|
||||||
# build output
|
# build output
|
||||||
.vercel/
|
|
||||||
dist/
|
dist/
|
||||||
.output/
|
.output/
|
||||||
|
|
||||||
|
|
|
@ -1,4 +1 @@
|
||||||
dist
|
dist/*
|
||||||
node_modules
|
|
||||||
.github
|
|
||||||
.changeset
|
|
16
.prettierrc
16
.prettierrc
|
@ -1,16 +0,0 @@
|
||||||
{
|
|
||||||
"printWidth": 120,
|
|
||||||
"semi": true,
|
|
||||||
"singleQuote": true,
|
|
||||||
"tabWidth": 2,
|
|
||||||
"trailingComma": "es5",
|
|
||||||
"useTabs": true,
|
|
||||||
"overrides": [
|
|
||||||
{
|
|
||||||
"files": [".*", "*.json", "*.md", "*.toml", "*.yml"],
|
|
||||||
"options": {
|
|
||||||
"useTabs": false
|
|
||||||
}
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
15
.prettierrc.cjs
Normal file
15
.prettierrc.cjs
Normal file
|
@ -0,0 +1,15 @@
|
||||||
|
module.exports = {
|
||||||
|
plugins: [
|
||||||
|
require.resolve("prettier-plugin-astro"),
|
||||||
|
require.resolve("prettier-plugin-tailwindcss"),
|
||||||
|
],
|
||||||
|
overrides: [
|
||||||
|
{
|
||||||
|
files: "*.astro",
|
||||||
|
options: {
|
||||||
|
parser: "astro",
|
||||||
|
},
|
||||||
|
},
|
||||||
|
],
|
||||||
|
};
|
||||||
|
|
110
CONTRIBUTING.md
Normal file
110
CONTRIBUTING.md
Normal file
|
@ -0,0 +1,110 @@
|
||||||
|
## <a name="commit"></a> Commit Message Format
|
||||||
|
|
||||||
|
_This specification is inspired by and supersedes the [Brainclements commit message format](https://gist.github.com/brianclements/841ea7bffdb01346392c)._
|
||||||
|
|
||||||
|
We have very precise rules over how our Git commit messages must be formatted.
|
||||||
|
This format leads to **easier to read commit history**.
|
||||||
|
|
||||||
|
Each commit message consists of a **header**, a **body**, and a **footer**.
|
||||||
|
|
||||||
|
```
|
||||||
|
<header>
|
||||||
|
<BLANK LINE>
|
||||||
|
<body>
|
||||||
|
<BLANK LINE>
|
||||||
|
<footer>
|
||||||
|
```
|
||||||
|
|
||||||
|
The `header` is mandatory and must conform to the [Commit Message Header](#commit-header) format.
|
||||||
|
|
||||||
|
The `body` is mandatory for all commits except for those of type "docs".
|
||||||
|
When the body is present it must be at least 20 characters long and must conform to the [Commit Message Body](#commit-body) format.
|
||||||
|
|
||||||
|
The `footer` is optional. The [Commit Message Footer](#commit-footer) format describes what the footer is used for and the structure it must have.
|
||||||
|
|
||||||
|
#### <a name="commit-header"></a>Commit Message Header
|
||||||
|
|
||||||
|
```
|
||||||
|
<type>(<scope>)(!?): <short summary>
|
||||||
|
│ │ │ │
|
||||||
|
│ │ │ └─⫸ Summary in present tense. Not capitalized. No period at the end.
|
||||||
|
│ │ │
|
||||||
|
│ │ └─⫸ Exclamation mark: breaking change
|
||||||
|
│ │
|
||||||
|
│ └─⫸ Commit Scope: layouts|components|pages
|
||||||
|
│
|
||||||
|
└─⫸ Commit Type: build|ci|docs|feat|fix|perf|refactor|test
|
||||||
|
```
|
||||||
|
|
||||||
|
The `<type>` and `<summary>` fields are mandatory, the `(<scope>)` field is optional.
|
||||||
|
Exclamation mark is optional too, but it's used to mark breaking changes.
|
||||||
|
|
||||||
|
##### Type
|
||||||
|
|
||||||
|
Must be one of the following:
|
||||||
|
|
||||||
|
- **build**: Changes that affect the build system or external dependencies (example scopes: gulp, broccoli, npm)
|
||||||
|
- **ci**: Changes to our CI configuration files and scripts (examples: CircleCi, SauceLabs)
|
||||||
|
- **docs**: Documentation only changes
|
||||||
|
- **feat**: A new feature
|
||||||
|
- **fix**: A bug fix
|
||||||
|
- **perf**: A code change that improves performance
|
||||||
|
- **refactor**: A code change that neither fixes a bug nor adds a feature
|
||||||
|
- **test**: Adding missing tests or correcting existing tests
|
||||||
|
|
||||||
|
##### Scope
|
||||||
|
|
||||||
|
The scope should be the name of the npm package affected (as perceived by the person reading the changelog generated from commit messages).
|
||||||
|
|
||||||
|
The following is the list of supported scopes:
|
||||||
|
|
||||||
|
- `layouts`
|
||||||
|
- `components`
|
||||||
|
- `pages`
|
||||||
|
|
||||||
|
There are currently a few exceptions to the "use package name" rule:
|
||||||
|
|
||||||
|
- none/empty string: useful for `test` and `refactor` changes that are done across all packages (e.g. `test: add missing unit tests`) and for docs changes that are not related to a specific package (e.g. `docs: fix typo in tutorial`).
|
||||||
|
|
||||||
|
##### Summary
|
||||||
|
|
||||||
|
Use the summary field to provide a succinct description of the change:
|
||||||
|
|
||||||
|
- use the imperative, present tense: "change" not "changed" nor "changes"
|
||||||
|
- don't capitalize the first letter
|
||||||
|
- no dot (.) at the end
|
||||||
|
|
||||||
|
#### <a name="commit-body"></a>Commit Message Body
|
||||||
|
|
||||||
|
Just as in the summary, use the imperative, present tense: "fix" not "fixed" nor "fixes".
|
||||||
|
|
||||||
|
Explain the motivation for the change in the commit message body. This commit message should explain _why_ you are making the change.
|
||||||
|
You can include a comparison of the previous behavior with the new behavior in order to illustrate the impact of the change.
|
||||||
|
|
||||||
|
#### <a name="commit-footer"></a>Commit Message Footer
|
||||||
|
|
||||||
|
The footer is optional and is used for two purposes:
|
||||||
|
|
||||||
|
- To reference issues that this commit closes
|
||||||
|
- To include information that doesn't fit in the header or body, such as a link to a file or a suggestion to review a pull request
|
||||||
|
|
||||||
|
The format for the footer is as follows:
|
||||||
|
|
||||||
|
```
|
||||||
|
Closes/Fixes #<issue number>
|
||||||
|
```
|
||||||
|
|
||||||
|
or
|
||||||
|
|
||||||
|
```
|
||||||
|
See pull request #<pull request number>
|
||||||
|
```
|
||||||
|
|
||||||
|
### Revert commits
|
||||||
|
|
||||||
|
If the commit reverts a previous commit, it should begin with `revert: `, followed by the header of the reverted commit.
|
||||||
|
|
||||||
|
The content of the commit message body should contain:
|
||||||
|
|
||||||
|
- information about the SHA of the commit being reverted in the following format: `This reverts commit <SHA>`,
|
||||||
|
- a clear description of the reason for reverting the commit message.
|
35
README.md
Normal file
35
README.md
Normal file
|
@ -0,0 +1,35 @@
|
||||||
|
<h1 align="center">
|
||||||
|
<br>
|
||||||
|
<img src="https://github.com/xHyroM/website/blob/main/src/assets/logo.png?raw=true" alt="Hyro" width="256">
|
||||||
|
<br>
|
||||||
|
</h1>
|
||||||
|
|
||||||
|
<h4 align="center">Source code for hyro's links website, simple and modern page.</h4>
|
||||||
|
|
||||||
|
<p align="center">
|
||||||
|
<a href="https://discord.gg/kFPKmEKeMS/" alt="Discord">
|
||||||
|
<img src="https://img.shields.io/discord/1046534628577640528?label=discord&style=for-the-badge&color=2fbfc4"/>
|
||||||
|
</a>
|
||||||
|
</p>
|
||||||
|
|
||||||
|
## Setup
|
||||||
|
|
||||||
|
1. Clone this repository: `git clone https://github.com/xHyroM/links.git`
|
||||||
|
2. Navigate to the project directory: `cd links`
|
||||||
|
3. Install the dependencies: `pnpm install`
|
||||||
|
|
||||||
|
## Usage
|
||||||
|
|
||||||
|
- To run the development server: `pnpm run dev`
|
||||||
|
- To build the project for production: `pnpm run build`
|
||||||
|
- To preview the production build: `pnpm run preview`
|
||||||
|
|
||||||
|
## Contributing
|
||||||
|
|
||||||
|
To contribute to this project, please follow the [standard Git workflow](https://git-scm.com/book/en/v2/Git-Basics-Getting-a-Git-Repository#The-Standard-Git-Workflow) and [CONTRIBUTING](./CONTRIBUTING.md).
|
||||||
|
|
||||||
|
1. Fork this repository
|
||||||
|
2. Create a new branch for your changes: `git checkout -b my-feature`
|
||||||
|
3. Commit your changes: `git commit -am "Add my feature"`
|
||||||
|
4. Push the branch: `git push origin my-feature`
|
||||||
|
5. Open a pull request
|
|
@ -1,20 +1,20 @@
|
||||||
import { defineConfig } from 'astro/config';
|
import { defineConfig } from "astro/config";
|
||||||
|
|
||||||
import tailwind from '@astrojs/tailwind';
|
import tailwind from "@astrojs/tailwind";
|
||||||
import sitemap from '@astrojs/sitemap';
|
import sitemap from "@astrojs/sitemap";
|
||||||
import image from '@astrojs/image';
|
import image from "@astrojs/image";
|
||||||
import vercel from '@astrojs/vercel/static';
|
import vercel from "@astrojs/vercel/static";
|
||||||
import compress from 'astro-compress';
|
import compress from "astro-compress";
|
||||||
import robotsTxt from 'astro-robots-txt';
|
import robotsTxt from "astro-robots-txt";
|
||||||
|
|
||||||
import { SITE } from './src/config';
|
import { SITE } from "./src/config";
|
||||||
|
|
||||||
// https://astro.build/config
|
// https://astro.build/config
|
||||||
export default defineConfig({
|
export default defineConfig({
|
||||||
site: SITE.url,
|
site: SITE.url,
|
||||||
base: '/',
|
base: "/",
|
||||||
trailingSlash: 'never',
|
trailingSlash: "never",
|
||||||
output: 'static',
|
output: "static",
|
||||||
integrations: [
|
integrations: [
|
||||||
tailwind(),
|
tailwind(),
|
||||||
sitemap(),
|
sitemap(),
|
||||||
|
@ -29,7 +29,7 @@ export default defineConfig({
|
||||||
robotsTxt({
|
robotsTxt({
|
||||||
policy: [
|
policy: [
|
||||||
{
|
{
|
||||||
userAgent: '*',
|
userAgent: "*",
|
||||||
},
|
},
|
||||||
],
|
],
|
||||||
sitemap: true,
|
sitemap: true,
|
||||||
|
|
13839
package-lock.json
generated
13839
package-lock.json
generated
File diff suppressed because it is too large
Load diff
16
package.json
16
package.json
|
@ -11,17 +11,21 @@
|
||||||
"astro": "astro"
|
"astro": "astro"
|
||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@astrojs/image": "^0.12.1",
|
"@astrojs/image": "^0.16.4",
|
||||||
"@astrojs/sitemap": "^1.0.0",
|
"@astrojs/sitemap": "^1.2.1",
|
||||||
"@astrojs/tailwind": "^2.1.3",
|
"@astrojs/tailwind": "^3.1.1",
|
||||||
"@astrojs/vercel": "^2.4.0",
|
"@astrojs/vercel": "^2.4.0",
|
||||||
"astro": "^1.9.0",
|
"astro": "^2.1.9",
|
||||||
"astro-compress": "^1.1.24",
|
"astro-compress": "^1.1.35",
|
||||||
|
"astro-robots-txt": "^0.4.1",
|
||||||
"autoprefixer": "^10.4.13",
|
"autoprefixer": "^10.4.13",
|
||||||
"cssnano": "^5.1.14",
|
"cssnano": "^5.1.14",
|
||||||
|
"postcss": "^8.4.21",
|
||||||
"tailwindcss": "^3.2.4"
|
"tailwindcss": "^3.2.4"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"astro-robots-txt": "^0.3.10"
|
"prettier": "^2.8.7",
|
||||||
|
"prettier-plugin-astro": "^0.8.0",
|
||||||
|
"prettier-plugin-tailwindcss": "^0.2.6"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
5151
pnpm-lock.yaml
Normal file
5151
pnpm-lock.yaml
Normal file
File diff suppressed because it is too large
Load diff
Binary file not shown.
Before Width: | Height: | Size: 9.7 KiB After Width: | Height: | Size: 88 KiB |
Binary file not shown.
Before Width: | Height: | Size: 8.2 KiB After Width: | Height: | Size: 1.5 MiB |
|
@ -1,6 +1,6 @@
|
||||||
---
|
---
|
||||||
import { getImage } from '@astrojs/image';
|
import { getImage } from "@astrojs/image";
|
||||||
import { SITE, OPEN_GRAPH } from '../config';
|
import { SITE, OPEN_GRAPH } from "../config";
|
||||||
---
|
---
|
||||||
|
|
||||||
<!-- Primary Meta Tags -->
|
<!-- Primary Meta Tags -->
|
||||||
|
|
|
@ -1,12 +1,12 @@
|
||||||
---
|
---
|
||||||
import { BUTTONS } from '../config';
|
import { BUTTONS } from "../config";
|
||||||
---
|
---
|
||||||
|
|
||||||
{
|
{
|
||||||
BUTTONS.map((button) => (
|
BUTTONS.map((button) => (
|
||||||
<a
|
<a
|
||||||
href={button.href}
|
href={button.href}
|
||||||
class={`${button.background} w-full rounded-xl border-2 border-black py-4 text-center text-xl font-bold text-white drop-shadow-[4px_5px_0_rgba(0,0,0,1)] duration-75 hover:translate-y-1 hover:translate-x-1 hover:drop-shadow-none`}
|
class={`${button.background} w-full rounded-xl border-2 border-black py-4 text-center text-xl font-bold text-white drop-shadow-[4px_5px_0_rgba(0,0,0,1)] duration-75 hover:translate-x-1 hover:translate-y-1 hover:drop-shadow-none`}
|
||||||
>
|
>
|
||||||
{button.name}
|
{button.name}
|
||||||
</a>
|
</a>
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
---
|
---
|
||||||
import { Image } from '@astrojs/image/components';
|
import { Image } from "@astrojs/image/components";
|
||||||
|
|
||||||
import logo from '../assets/images/logo.png';
|
import logo from "../assets/images/logo.png";
|
||||||
---
|
---
|
||||||
|
|
||||||
<Image src={logo} alt="Profilová Fotografia" class="rounded-full w-28" /><img />
|
<Image src={logo} alt="profile foto" class="w-36" />
|
||||||
|
|
|
@ -1,3 +1,3 @@
|
||||||
<h1 class="mt-4 text-3xl font-bold text-black">
|
<h1 class="mt-4 text-3xl font-bold text-black">
|
||||||
<span class="mr-1 text-[#0091FF]">@</span>oliminator
|
<span class="mr-1 text-[#0091FF]">@</span>xHyroM
|
||||||
</h1>
|
</h1>
|
||||||
|
|
|
@ -1,49 +1,58 @@
|
||||||
export const SITE = {
|
export const SITE = {
|
||||||
title: 'Oliminator Odkazy',
|
title: "Hyro's Links",
|
||||||
description: 'Lorem ipsum dolor sit amet consectetur adipisicing elit. Iure, placeat!',
|
description:
|
||||||
url: 'https://odkazy.oliminator.net',
|
"Hyro's Links is a website that contains links to my social media accounts and other useful links.",
|
||||||
themeColor: '#f9f9f1',
|
url: "https://links.xhyrom.me",
|
||||||
|
themeColor: "#fbc119",
|
||||||
};
|
};
|
||||||
|
|
||||||
export const OPEN_GRAPH = {
|
export const OPEN_GRAPH = {
|
||||||
image: {
|
image: {
|
||||||
src: 'og_image.png',
|
src: "og_image.png",
|
||||||
alt: 'Odkazy text s tlačítkami',
|
alt: "just a picture with buttons",
|
||||||
},
|
},
|
||||||
twitter: 'oliminator34',
|
twitter: "hyrousek",
|
||||||
};
|
};
|
||||||
|
|
||||||
export const BUTTONS = [
|
export const BUTTONS = [
|
||||||
{
|
{
|
||||||
name: 'Môj Minecraft Server',
|
name: "Personal (GitHub)",
|
||||||
background: 'bg-lendmark hover:bg-lendmark/80',
|
background: "bg-github hover:bg-github/80",
|
||||||
href: 'https://go.oliminator.net/lendmark',
|
href: "https://github.com/xHyroM",
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
name: 'TikTok',
|
name: "Hyro Blobs (GitHub)",
|
||||||
background: 'bg-tiktok hover:bg-tiktok/80',
|
background: "bg-github hover:bg-github/80",
|
||||||
href: 'https://go.oliminator.net/titok',
|
href: "https://github.com/Hyro-Blobs/blobs",
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
name: 'YouTube',
|
name: "Hyro's Forks (GitHub)",
|
||||||
background: 'bg-youtube hover:bg-youtube/80',
|
background: "bg-github hover:bg-github/80",
|
||||||
href: 'https://go.oliminator.net/youtube',
|
href: "https://github.com/xhyrom-forks",
|
||||||
},
|
|
||||||
|
|
||||||
{
|
|
||||||
name: 'Instagram',
|
|
||||||
background: 'bg-instagram hover:bg-instagram/80',
|
|
||||||
href: 'https://go.oliminator.net/instagram',
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
name: 'GitHub',
|
name: "Discord",
|
||||||
background: 'bg-github hover:bg-github/80',
|
background: "bg-discord hover:bg-discord/80",
|
||||||
href: 'https://go.oliminator.net/github',
|
href: "https://discord.gg/kFPKmEKeMS",
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
name: 'Discord',
|
name: "Instagram",
|
||||||
background: 'bg-discord hover:bg-discord/80',
|
background: "bg-instagram hover:bg-instagram/80",
|
||||||
href: 'https://discord.lendmark.sk/',
|
href: "https://instagram.com/hyro.dev",
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: "Twitter",
|
||||||
|
background: "bg-twitter hover:bg-twitter/80",
|
||||||
|
href: "https://twitter.com/hyrousek",
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: "Chess",
|
||||||
|
background: "bg-chess hover:bg-chess/80",
|
||||||
|
href: "https://www.chess.com/member/Hyriik",
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: "Reddit",
|
||||||
|
background: "bg-reddit hover:bg-reddit/80",
|
||||||
|
href: "https://reddit.com/u/xHyroM",
|
||||||
},
|
},
|
||||||
,
|
|
||||||
];
|
];
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
---
|
---
|
||||||
import HeadCommon from '../components/HeadCommon.astro';
|
import HeadCommon from "../components/HeadCommon.astro";
|
||||||
import HeadSEO from '../components/HeadSEO.astro';
|
import HeadSEO from "../components/HeadSEO.astro";
|
||||||
---
|
---
|
||||||
|
|
||||||
<!DOCTYPE html>
|
<!DOCTYPE html>
|
||||||
|
@ -9,7 +9,7 @@ import HeadSEO from '../components/HeadSEO.astro';
|
||||||
<HeadCommon />
|
<HeadCommon />
|
||||||
<HeadSEO />
|
<HeadSEO />
|
||||||
</head>
|
</head>
|
||||||
<body class="bg-primaryDotted bg-primaryDottedSize overflow-x-hidden">
|
<body class="overflow-x-hidden bg-primaryDotted bg-primaryDottedSize">
|
||||||
<slot />
|
<slot />
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
|
|
@ -1,17 +1,17 @@
|
||||||
---
|
---
|
||||||
import Layout from '../layouts/Layout.astro';
|
import Layout from "../layouts/Layout.astro";
|
||||||
import Picture from '../components/Picture.astro';
|
import Picture from "../components/Picture.astro";
|
||||||
import Username from '../components/Username.astro';
|
import Username from "../components/Username.astro";
|
||||||
import Item from '../components/Item.astro';
|
import Item from "../components/Item.astro";
|
||||||
---
|
---
|
||||||
|
|
||||||
<Layout>
|
<Layout>
|
||||||
<main class="mx-auto w-max mb-12">
|
<main class="mx-auto mb-12 w-max">
|
||||||
<header class="mt-12 flex flex-col items-center">
|
<header class="mt-12 flex flex-col items-center">
|
||||||
<Picture />
|
<Picture />
|
||||||
<Username />
|
<Username />
|
||||||
</header>
|
</header>
|
||||||
<section class="mt-6 flex w-72 md:w-80 flex-col gap-y-6">
|
<section class="mt-6 flex w-72 flex-col gap-y-6 md:w-80">
|
||||||
<Item />
|
<Item />
|
||||||
</section>
|
</section>
|
||||||
</main>
|
</main>
|
||||||
|
|
|
@ -1,78 +1,74 @@
|
||||||
/** @type {import('tailwindcss').Config} */
|
/** @type {import('tailwindcss').Config} */
|
||||||
module.exports = {
|
module.exports = {
|
||||||
content: ['./src/**/*.{astro,html,js,jsx,md,mdx,svelte,ts,tsx,vue}'],
|
content: ["./src/**/*.{astro,html,js,jsx,md,mdx,svelte,ts,tsx,vue}"],
|
||||||
theme: {
|
theme: {
|
||||||
extend: {
|
extend: {
|
||||||
colors: {
|
colors: {
|
||||||
adobe: '#ff0000',
|
adobe: "#ff0000",
|
||||||
airbnb: '#fd5c63',
|
airbnb: "#fd5c63",
|
||||||
algolia: '#050f2c',
|
algolia: "#050f2c",
|
||||||
amazon: '#ff9900',
|
amazon: "#ff9900",
|
||||||
android: '#a4c639',
|
android: "#a4c639",
|
||||||
atlassian: '#003366',
|
atlassian: "#003366",
|
||||||
behance: '#1769ff',
|
behance: "#1769ff",
|
||||||
codepen: '#0ebeff',
|
codepen: "#0ebeff",
|
||||||
dailymotion: '#00aaff',
|
dailymotion: "#00aaff",
|
||||||
tiktok: '#fe3f69',
|
tiktok: "#fe3f69",
|
||||||
deviantart: '#05cc47',
|
deviantart: "#05cc47",
|
||||||
discord: '#5865F2',
|
discord: "#5865F2",
|
||||||
dribbble: '#ea4c89',
|
dribbble: "#ea4c89",
|
||||||
dropbox: '#007ee5',
|
dropbox: "#007ee5",
|
||||||
duolingo: '#7ac70c',
|
duolingo: "#7ac70c",
|
||||||
etsy: '#d5641c',
|
etsy: "#d5641c",
|
||||||
evernote: '#2dbe60',
|
evernote: "#2dbe60",
|
||||||
facebook: '#3b5998',
|
facebook: "#3b5998",
|
||||||
feedly: '#2bb24c',
|
feedly: "#2bb24c",
|
||||||
github: '#333',
|
github: "#333",
|
||||||
gitlab: '#fc6d26',
|
gitlab: "#fc6d26",
|
||||||
google: '#4285f4',
|
google: "#4285f4",
|
||||||
instagram: '#e1306c',
|
instagram: "#e1306c",
|
||||||
linkedin: '#0077b5',
|
linkedin: "#0077b5",
|
||||||
medium: '#00ab6c',
|
medium: "#00ab6c",
|
||||||
messenger: '#0084ff',
|
messenger: "#0084ff",
|
||||||
microsoft: '#f65314',
|
microsoft: "#f65314",
|
||||||
netflix: '#e50914',
|
netflix: "#e50914",
|
||||||
pinterest: '#e60023',
|
pinterest: "#e60023",
|
||||||
pocket: '#ef4056',
|
pocket: "#ef4056",
|
||||||
react: '#00d8ff',
|
react: "#00d8ff",
|
||||||
reddit: '#ff4500',
|
reddit: "#ff4500",
|
||||||
shopify: '#96bf48',
|
shopify: "#96bf48",
|
||||||
skype: '#00aff0',
|
skype: "#00aff0",
|
||||||
slack: '#611f69',
|
slack: "#611f69",
|
||||||
snapchat: '#fffc00',
|
snapchat: "#fffc00",
|
||||||
spotify: '#1db954',
|
spotify: "#1db954",
|
||||||
stackoverflow: '#f48024',
|
stackoverflow: "#f48024",
|
||||||
stripe: '#6772e5',
|
stripe: "#6772e5",
|
||||||
telegram: '#0088cc',
|
telegram: "#0088cc",
|
||||||
trello: '#0079bf',
|
trello: "#0079bf",
|
||||||
tumblr: '#35465c',
|
tumblr: "#35465c",
|
||||||
twitch: '#6441a5',
|
twitch: "#6441a5",
|
||||||
twitter: '#1da1f2',
|
twitter: "#1da1f2",
|
||||||
uber: '#09091a',
|
uber: "#09091a",
|
||||||
ubuntu: '#dd4814',
|
ubuntu: "#dd4814",
|
||||||
vimeo: '#162221',
|
vimeo: "#162221",
|
||||||
vue: '#42b883',
|
vue: "#42b883",
|
||||||
whatsapp: '#075e54',
|
whatsapp: "#075e54",
|
||||||
wikipedia: '#000000',
|
wikipedia: "#000000",
|
||||||
youtube: '#ff0000',
|
youtube: "#ff0000",
|
||||||
lendmark: '#5e8949',
|
// custom services
|
||||||
transparent: 'transparent',
|
chess: "#5e8949",
|
||||||
current: 'currentColor',
|
// ^ custom services
|
||||||
black: '#000',
|
transparent: "transparent",
|
||||||
white: '#fff',
|
current: "currentColor",
|
||||||
background: '#F9F9F1',
|
black: "#000",
|
||||||
blue: '#44C3EC',
|
white: "#fff",
|
||||||
|
blue: "#44C3EC",
|
||||||
},
|
},
|
||||||
/*
|
|
||||||
fontFamily: {
|
|
||||||
default: ['Outfit', 'sans-serif'],
|
|
||||||
},
|
|
||||||
*/
|
|
||||||
backgroundImage: {
|
backgroundImage: {
|
||||||
primaryDotted: 'radial-gradient(#E6E6D1 1px, #F9F9F1 1px)',
|
primaryDotted: "radial-gradient(#E6E6D1 1px, #F9F9F1 1px)",
|
||||||
},
|
},
|
||||||
backgroundSize: {
|
backgroundSize: {
|
||||||
primaryDottedSize: '15px 15px',
|
primaryDottedSize: "15px 15px",
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
|
Loading…
Reference in a new issue