Browse Source

Farrow: Initial commit. (#5293)

* Farrow: Initial commit.

* Delete index.html
alaczek 3 years ago
parent
commit
a83078fb35
4 changed files with 128 additions and 0 deletions
  1. 41 0
      farrow/readme.txt
  2. BIN
      farrow/screenshot.png
  3. 39 0
      farrow/style.css
  4. 48 0
      farrow/theme.json

+ 41 - 0
farrow/readme.txt

@@ -0,0 +1,41 @@
+=== Farrow ===
+Contributors: Automattic
+Requires at least: 5.8
+Tested up to: 5.8
+Requires PHP: 5.7
+License: GPLv2 or later
+License URI: http://www.gnu.org/licenses/gpl-2.0.html
+
+== Description ==
+
+Farrow is a minimalist theme, designed for single-page websites.
+
+== Changelog ==
+
+= 1.0.0 =
+* Initial release
+
+== Copyright ==
+
+Farrow WordPress Theme, (C) 2021 Automattic
+Farrow is distributed under the terms of the GNU GPL.
+
+This program is free software: you can redistribute it and/or modify
+it under the terms of the GNU General Public License as published by
+the Free Software Foundation, either version 2 of the License, or
+(at your option) any later version.
+
+This program is distributed in the hope that it will be useful,
+but WITHOUT ANY WARRANTY; without even the implied warranty of
+MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+GNU General Public License for more details.
+
+Farrow uses the following third-party resources:
+
+Green tropical leaves background. Original public domain image from Wikimedia Commons.
+Source: https://www.rawpixel.com/image/3286299/free-photo-image-flower-tropical-green
+Used in theme screenshot and demo site.
+
+Portrait of a woman sitting with legs crossed by Daria Shevtsova.
+Source: https://stocksnap.io/photo/woman-crossed-GAXFQX8BXD
+Used in theme screenshot and demo site.

BIN
farrow/screenshot.png


+ 39 - 0
farrow/style.css

@@ -0,0 +1,39 @@
+/*
+Theme Name: Farrow
+Theme URI: https://wordpress.com/theme/farrow
+Author: Automattic
+Author URI: https://automattic.com/
+Description: Farrow is a minimalist theme, designed for single-page websites.
+Requires at least: 5.8
+Tested up to: 5.8
+Requires PHP: 5.7
+Version: 1.0.0
+License: GNU General Public License v2 or later
+License URI: https://raw.githubusercontent.com/Automattic/themes/trunk/LICENSE
+Template: blockbase
+Text Domain: farrow
+Tags: one-column, custom-colors, custom-menu, custom-logo, editor-style, featured-images, full-site-editing, rtl-language-support, theme-options, threaded-comments, translation-ready, wide-blocks, auto-loading-homepage
+
+Farrow WordPress Theme, (C) 2021 Automattic
+Farrow is distributed under the terms of the GNU GPL.
+
+This program is free software: you can redistribute it and/or modify
+it under the terms of the GNU General Public License as published by
+the Free Software Foundation, either version 2 of the License, or
+(at your option) any later version.
+
+This program is distributed in the hope that it will be useful,
+but WITHOUT ANY WARRANTY; without even the implied warranty of
+MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+GNU General Public License for more details.
+
+Farrow uses the following third-party resources:
+
+Green tropical leaves background. Original public domain image from Wikimedia Commons.
+Source: https://www.rawpixel.com/image/3286299/free-photo-image-flower-tropical-green
+Used in theme screenshot and demo site.
+
+Portrait of a woman sitting with legs crossed by Daria Shevtsova.
+Source: https://stocksnap.io/photo/woman-crossed-GAXFQX8BXD
+Used in theme screenshot and demo site.
+*/

+ 48 - 0
farrow/theme.json

@@ -0,0 +1,48 @@
+{
+    "version": 2,
+    "settings": {
+        "color": {
+            "palette": [
+                {
+                    "slug": "foreground",
+                    "color": "#000000",
+                    "name": "Foreground",
+                    "default": "#000000"
+                },
+                {
+                    "slug": "background",
+                    "color": "#ffffff",
+                    "name": "Background",
+                    "default": "#ffffff"
+                }
+            ]
+        },
+        "typography": {
+            "fontFamilies": [
+                {
+                    "fontFamily": "\"Roboto\", sans-serif",
+                    "slug": "body-font",
+                    "name": "Body (Roboto)",
+                    "google": "family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,800;1,900",
+                    "fontSlug": "roboto"
+                },
+                {
+                    "fontFamily": "\"Rubik\", sans-serif",
+                    "slug": "heading-font",
+                    "name": "Heading (Rubik)",
+                    "google": "family=Rubik:ital,wght@0,300..900;1,300..900",
+                    "fontSlug": "rubik"
+                }
+            ]
+        },
+        "custom": {
+            "color": {
+                "foreground": "var(--wp--preset--color--foreground)",
+                "background": "var(--wp--preset--color--background)",
+                "primary": "var(--wp--preset--color--foreground)",
+                "secondary": "var(--wp--preset--color--foreground)",
+                "tertiary": "var(--wp--preset--color--background)"
+            }
+        }
+    }
+}