-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy paththeme.php
More file actions
96 lines (85 loc) · 3.11 KB
/
theme.php
File metadata and controls
96 lines (85 loc) · 3.11 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
<?php
return [
'name' => 'Tailwind',
'version' => '1.0.0',
'wemx_version' => '1.0.0',
'author' => 'Mubeen',
// Below are assets for the theme
'folder' => 'tailwind',
// Wrapper are used by addon developers to display the contents of a module
// A wrapper should be a blank page with menu, user settings around it
'wrapper' => 'layouts/wrapper',
'assets' => '/assets/themes/default/',
'theme_presets' => [
'default' => [
'name' => 'Default',
'image' => '/assets/core/img/theme-presets/metalic_gray.png',
'colors' => '{"50": "#F9FAFB","100": "#F3F4F6","200": "#E5E7EB","300": "#D1D5DB","400": "#9CA3AF","500": "#6B7280","600": "#4B5563","700": "#374151","800": "#1F2937","900": "#111827"}',
],
'space_black' => [
'name' => 'Space Black',
'image' => '/assets/core/img/theme-presets/space_black.png',
'colors' => '{"50": "#F9FAFB", "100": "#F3F4F6", "200": "#E5E7EB", "300": "#D1D5DB", "400": "#9CA3AF", "500": "#6B7280", "600": "#232b37", "700": "#141c27", "800": "#0c1219", "900": "#000000"}',
],
'midnight_purple' => [
'name' => 'Midnight Purple',
'image' => '/assets/core/img/theme-presets/midnight_purple.png',
'colors' => '{"50": "#F9FAFB","100": "#F3F4F6","200": "#E5E7EB","300": "#D1D5DB","400": "#9CA3AF","500": "#6B7280","600": "#32324a","700": "#1d1d2f","800": "#171725","900": "#11111d"}',
],
'dark_purple' => [
'name' => 'Dark Purple',
'image' => '/assets/core/img/theme-presets/dark_purple.png',
'colors' => '{"50": "#F9FAFB","100": "#F3F4F6","200": "#E5E7EB","300": "#D1D5DB","400": "#9CA3AF","500": "#6B7280","600": "#4c4f6d","700": "#2f3247","800": "#252839","900": "#1f2133"}',
],
],
'category_structures' => [
'grid' => [
'name' => 'Grid',
'image' => '/assets/core/img/category-presets/grid.png',
],
'small_grid' => [
'name' => 'Small Grid',
'image' => '/assets/core/img/category-presets/small_grid.png',
],
'block' => [
'name' => 'Block',
'image' => '/assets/core/img/category-presets/block.png',
],
],
'tailwind_colors' => [
'rose',
'pink',
'fuchsia',
'purple',
'violet',
'indigo',
'blue',
'sky',
'cyan',
'teal',
'emerald',
'green',
'lime',
'yellow',
'amber',
'orange',
'red',
'stone',
'neutral',
'zinc',
'gray',
'slate',
],
'navigation' => [
'navbar' => [
'name' => 'Navbar',
'image' => '/assets/core/img/navigation/navbar.png',
],
'sidebar' => [
'name' => 'Sidebar',
'image' => '/assets/core/img/navigation/sidebar.png',
],
],
'socials' => ['discord', 'github', 'twitter', 'facebook', 'linkedin', 'youtube', 'instagram', 'tiktok', 'twitch'],
'footer_types' => ['default', 'minimal'],
];