diff --git a/assets/linkstack/css/brands.css b/assets/linkstack/css/brands.css
index 7ea87c0..abb3960 100644
--- a/assets/linkstack/css/brands.css
+++ b/assets/linkstack/css/brands.css
@@ -756,6 +756,16 @@ button:hover,
filter: brightness(90%);
}
+/* Picarto */
+.button.button-picarto {
+ color: #ffffff;
+ background-color: #4aba8a;
+}
+.button.button-picarto:hover,
+.button.button-picarto:focus {
+ filter: brightness(90%);
+}
+
/* Pinterest */
.button.button-pinterest {
color: #000000;
@@ -946,6 +956,16 @@ button.button-scribd{
filter: brightness(90%);
}
+/* Trakt */
+.button.button-trakt {
+ color: #ffffff;
+ background-color: #ed1d24;
+}
+.button.button-trakt:hover,
+.button.button-trakt:focus {
+ filter: brightness(90%);
+}
+
/* Trello */
.button.button-trello {
color: #ffffff;
diff --git a/assets/linkstack/icons/picarto.svg b/assets/linkstack/icons/picarto.svg
new file mode 100644
index 0000000..9ff4ee9
--- /dev/null
+++ b/assets/linkstack/icons/picarto.svg
@@ -0,0 +1,13 @@
+
\ No newline at end of file
diff --git a/assets/linkstack/icons/trakt.svg b/assets/linkstack/icons/trakt.svg
new file mode 100644
index 0000000..87b0d56
--- /dev/null
+++ b/assets/linkstack/icons/trakt.svg
@@ -0,0 +1,35 @@
+
diff --git a/config/button-names.php b/config/button-names.php
index 3d01322..4502bc2 100644
--- a/config/button-names.php
+++ b/config/button-names.php
@@ -18,9 +18,11 @@ $buttonNames = array(
'linkstack' => 'LinkStack',
'openstreetmap' => 'OpenStreetMap',
'paypal' => 'PayPal',
+ 'picarto' => 'Picarto',
'playstore' => 'Google Play',
'soundcloud' => 'SoundCloud',
'tiktok' => 'TikTok',
+ 'trakt' => 'Trakt',
'vrchat' => 'VRChat',
'whatsapp' => 'WhatsApp',
'wordpress' => 'WordPress',
diff --git a/database/seeders/ButtonSeeder.php b/database/seeders/ButtonSeeder.php
index 7730fc5..4fb366b 100755
--- a/database/seeders/ButtonSeeder.php
+++ b/database/seeders/ButtonSeeder.php
@@ -413,6 +413,14 @@ class ButtonSeeder extends Seeder
[
'name' => 'linkstack'
],
+
+ [
+ 'name' => 'picarto'
+ ],
+
+ [
+ 'name' => 'trakt'
+ ],
];
Button::insert($buttons);