Skip to content

Commit c06eed6

Browse files
Adding custom property text, icons, primary, secondary and accent
1 parent 89175a6 commit c06eed6

File tree

1 file changed

+45
-8
lines changed

1 file changed

+45
-8
lines changed

package.json

+45-8
Original file line numberDiff line numberDiff line change
@@ -33,29 +33,63 @@
3333
],
3434
"mobile": "assets/mobile.png"
3535
},
36-
"docs": "https://officialrajdeepsingh.dev",
3736
"config": {
3837
"docs": "https://officialrajdeepsingh.dev",
3938
"posts_per_page": 5,
40-
"image_sizes": {},
4139
"card_assets": true,
4240
"custom": {
41+
"background_color": {
42+
"type": "color",
43+
"default": "#ffffff",
44+
"description": "Change the background color of your blog."
45+
},
46+
"text_color": {
47+
"type": "color",
48+
"default": "#000000",
49+
"description": "Change the text color of your blog."
50+
},
51+
"icons_text_color": {
52+
"type": "color",
53+
"default": "#000000",
54+
"description": "Change the text color of your blog."
55+
},
56+
"text_primary_color": {
57+
"type": "color",
58+
"default": "#000000",
59+
"description": "Change the primary text color of your blog and page."
60+
},
61+
"text_secondary_color": {
62+
"type": "color",
63+
"default": "#000000",
64+
"description": "Change the primary text color of your blog."
65+
},
66+
"text_accent_color": {
67+
"type": "color",
68+
"default": "#000000",
69+
"description": "Change the primary text color of your blog."
70+
},
4371
"copyright": {
4472
"type": "text",
4573
"default": "Copy right by frontend web.",
46-
"description": "copy right message."
74+
"description": "Add copy right message in footer."
4775
},
48-
"background_color": {
49-
"type": "color",
50-
"default": "#15171a",
51-
"description": "Change the background color of your blog."
76+
"newsletter_size": {
77+
"type": "select",
78+
"group": "homepage",
79+
"options": [
80+
"sm",
81+
"md",
82+
"lg",
83+
"xl"
84+
],
85+
"default": "lg"
5286
},
5387
"newsletter_show": {
5488
"type": "boolean",
5589
"default": true,
5690
"group": "homepage",
5791
"description": "Show the newsletter."
58-
},
92+
},
5993
"newsletter_title": {
6094
"type": "text",
6195
"default": "We invest in the worlds potential.",
@@ -92,5 +126,8 @@
92126
"extends": [
93127
"@tryghost:theme"
94128
]
129+
},
130+
"dependencies": {
131+
"tailwindcss-animate": "^1.0.7"
95132
}
96133
}

0 commit comments

Comments
 (0)