Skip to content

Commit

Permalink
2024-05-03 - Added HTML data
Browse files Browse the repository at this point in the history
  • Loading branch information
markbattistella committed May 3, 2024
1 parent 4e46414 commit aa1977a
Show file tree
Hide file tree
Showing 10 changed files with 61 additions and 4 deletions.
Binary file added Documentation/icons/android-chrome-192x192.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added Documentation/icons/android-chrome-256x256.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added Documentation/icons/apple-touch-icon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
9 changes: 9 additions & 0 deletions Documentation/icons/browserconfig.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
<?xml version="1.0" encoding="utf-8"?>
<browserconfig>
<msapplication>
<tile>
<square150x150logo src="/icons/mstile-150x150.png"/>
<TileColor>#603cba</TileColor>
</tile>
</msapplication>
</browserconfig>
Binary file added Documentation/icons/favicon-16x16.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added Documentation/icons/favicon-32x32.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added Documentation/icons/favicon.ico
Binary file not shown.
Binary file added Documentation/icons/mstile-150x150.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
19 changes: 19 additions & 0 deletions Documentation/icons/site.webmanifest
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
{
"name": "ContrastKit",
"short_name": "ContrastKit",
"icons": [
{
"src": "/icons/android-chrome-192x192.png",
"sizes": "192x192",
"type": "image/png"
},
{
"src": "/icons/android-chrome-256x256.png",
"sizes": "256x256",
"type": "image/png"
}
],
"theme_color": "#ffffff",
"background_color": "#ffffff",
"display": "standalone"
}
37 changes: 33 additions & 4 deletions Documentation/index.html
Original file line number Diff line number Diff line change
@@ -1,18 +1,47 @@
<!DOCTYPE html>
<html lang="en">
<html>
<head>
<title>ContrastKit: Apple Swift Package</title>
<meta charset="UTF-8">
<title>ContrastKit: Apple Swift Package</title>
<meta name="twitter:title" content="ContrastKit: Apple Swift Package">
<meta property="og:title" content="ContrastKit: Apple Swift Package">
<meta property="og:site_name" content="ContrastKit: Apple Swift Package">
<link rel="canonical" href="https://contrastkit.markbattistella.com">
<meta name="twitter:url" content="https://contrastkit.markbattistella.com">
<meta property="og:url" content="https://contrastkit.markbattistella.com">
<meta name="description" content="ContrastKit is a Swift library designed to facilitate colour contrast handling within iOS, iPadOS, macOS, and tvOS applications. It provides developers with tools to automatically generate colour shades from any base colour and determine the most readable contrast colours according to established accessibility standards (AA Large, AA, and AAA).">
<meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
<meta name="twitter:description" content="ContrastKit is a Swift library designed to facilitate colour contrast handling within iOS, iPadOS, macOS, and tvOS applications. It provides developers with tools to automatically generate colour shades from any base colour and determine the most readable contrast colours according to established accessibility standards (AA Large, AA, and AAA).">
<meta property="og:description" content="ContrastKit is a Swift library designed to facilitate colour contrast handling within iOS, iPadOS, macOS, and tvOS applications. It provides developers with tools to automatically generate colour shades from any base colour and determine the most readable contrast colours according to established accessibility standards (AA Large, AA, and AAA).">
<meta name="keywords" content="swift,swiftui,colour,color,ios,macos,visionos,tvos,themes,theming,design,ui">
<meta name="copyright" content="Mark Battistella">
<meta name="author" content="Mark Battistella">
<meta name="language" content="en-au">
<meta name="twitter:card" content="summary_large_image">
<meta name="viewport" content="width=device-width, initial-scale=1.0, viewport-fit=cover">
<link rel="apple-touch-icon" sizes="180x180" href="/icons/apple-touch-icon.png?2024.05">
<link rel="icon" type="image/png" sizes="32x32" href="/icons/favicon-32x32.png?2024.05">
<link rel="icon" type="image/png" sizes="16x16" href="/icons/favicon-16x16.png?2024.05">
<link rel="manifest" href="/icons/site.webmanifest?2024.05">
<meta name="msapplication-TileColor" content="#603cba">
<meta name="theme-color" content="#ffffff">
<link rel="shortcut icon" href="/icons/favicon.ico?2024.05">
<meta name="apple-mobile-web-app-title" content="ContrastKit">
<meta name="application-name" content="ContrastKit">
<meta name="msapplication-config" content="/icons/browserconfig.xml?2024.05">
<meta name="theme-color" content="rgb(17, 17, 17)" media="(prefers-color-scheme: light)">
<meta name="theme-color" content="rgb(17, 17, 17)" media="(prefers-color-scheme: dark)">
<meta content="546" property="og:image:width">
<meta content="400" property="og:image:height">
<meta name="twitter:image" content="https://raw.githubusercontent.com/markbattistella/ContrastKit/main/.github/data/banner.png">
<meta property="og:image" content="https://raw.githubusercontent.com/markbattistella/ContrastKit/main/.github/data/banner.png">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/docsify-themeable@0/dist/css/theme-simple-dark.css">
<link rel="stylesheet" href="style.min.css">
</head>
<body>
<div id="app"></div>
<script>
window.$docsify = {
name: 'ZodiacKit',
name: 'ContrastKit',
repo: 'https://github.com/markbattistella/ContrastKit',
homepage: 'https://raw.githubusercontent.com/markbattistella/ContrastKit/main/README.md',
auto2top: true,
Expand Down

0 comments on commit aa1977a

Please sign in to comment.