{"id":5815,"date":"2024-11-07T16:05:16","date_gmt":"2024-11-07T16:05:16","guid":{"rendered":"https:\/\/resizemyimg.com\/blog\/?p=5815"},"modified":"2024-11-07T16:05:16","modified_gmt":"2024-11-07T16:05:16","slug":"how-to-preset-text-color-in-primevue-theme","status":"publish","type":"post","link":"https:\/\/resizemyimg.com\/blog\/how-to-preset-text-color-in-primevue-theme\/","title":{"rendered":"How to Preset Text Color in PrimeVue Theme"},"content":{"rendered":"<p>Customizing the text color in your PrimeVue theme can significantly enhance your application&#8217;s aesthetics and improve user experience. PrimeVue, a popular UI component library for Vue.js, allows for extensive styling options through its theming capabilities. This article will guide you through the process of presetting text colors in PrimeVue themes, ensuring your application looks polished and cohesive.<\/p>\n<h2>Understanding PrimeVue Themes<\/h2>\n<p><img loading=\"lazy\" decoding=\"async\" class=\"aligncenter wp-image-5817 size-large\" src=\"https:\/\/resizemyimg.com\/blog\/wp-content\/uploads\/2024\/11\/Understanding-PrimeVue-Themes-1024x512.jpg\" alt=\"Understanding PrimeVue Themes\" width=\"1024\" height=\"512\" srcset=\"https:\/\/resizemyimg.com\/blog\/wp-content\/uploads\/2024\/11\/Understanding-PrimeVue-Themes-1024x512.jpg 1024w, https:\/\/resizemyimg.com\/blog\/wp-content\/uploads\/2024\/11\/Understanding-PrimeVue-Themes-300x150.jpg 300w, https:\/\/resizemyimg.com\/blog\/wp-content\/uploads\/2024\/11\/Understanding-PrimeVue-Themes-575x288.jpg 575w, https:\/\/resizemyimg.com\/blog\/wp-content\/uploads\/2024\/11\/Understanding-PrimeVue-Themes-768x384.jpg 768w, https:\/\/resizemyimg.com\/blog\/wp-content\/uploads\/2024\/11\/Understanding-PrimeVue-Themes-1536x768.jpg 1536w, https:\/\/resizemyimg.com\/blog\/wp-content\/uploads\/2024\/11\/Understanding-PrimeVue-Themes.jpg 1600w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" \/><\/p>\n<p>Before diving into text color customization, it&#8217;s essential to understand how PrimeVue themes work. Themes in PrimeVue define the overall look and feel of your application, including colors, fonts, and component styles. The library offers several default themes, each with its own set of color variables. By customizing these themes, you can maintain a consistent style across your application while tailoring it to your branding needs.<\/p>\n<h2>How to Preset Text Color in PrimeVue Theme<\/h2>\n<h3>Setting Up PrimeVue in Your Project<\/h3>\n<p>To begin customizing your text colors, ensure you have PrimeVue installed in your Vue.js project. You can easily set it up by following these steps:<\/p>\n<ol>\n<li><strong>Install PrimeVue<\/strong>: Use npm or yarn to add PrimeVue to your project.<strong>npm install primevue<\/strong><br \/>\n<strong>npm install primeicons<\/strong><\/li>\n<li><strong>Configure PrimeVue<\/strong>: In your main JavaScript file (typically <code>main.js<\/code> or <code>main.ts<\/code>), import PrimeVue and its CSS files.<strong>import { createApp } from &#8216;vue&#8217;;<\/strong><br \/>\n<strong>import App from &#8216;.\/App.vue&#8217;;<\/strong><br \/>\n<strong>import PrimeVue from &#8216;primevue\/config&#8217;;<\/strong><br \/>\n<strong>import &#8216;primevue\/resources\/themes\/saga-blue\/theme.css&#8217;; \/\/ Import a default theme<\/strong><br \/>\n<strong>import &#8216;primevue\/resources\/primevue.min.css&#8217;; \/\/ Core styles<\/strong><br \/>\n<strong>import &#8216;primeicons\/primeicons.css&#8217;; \/\/ Icons<\/strong><\/p>\n<p><strong>const app = createApp(App);<\/strong><br \/>\n<strong>app.use(PrimeVue);<\/strong><br \/>\n<strong>app.mount(&#8216;#app&#8217;);<\/strong><\/li>\n<\/ol>\n<h3>Using CSS Variables for Text Color Customization<\/h3>\n<p>PrimeVue themes utilize CSS variables to manage colors, making it simple to customize text colors across your application. To change the text color, you&#8217;ll modify these variables.<\/p>\n<ol>\n<li><strong>Locate the CSS Variables<\/strong>: Each PrimeVue theme comes with a set of predefined CSS variables. For text colors, you might find variables like <code>--primary-text-color<\/code>, <code>--secondary-text-color<\/code>, and <code>--text-color<\/code>.<\/li>\n<li><strong>Override Default Values<\/strong>: You can create a custom CSS file where you override these variables. Here\u2019s an example of how to set your text colors:<br \/>\n<strong>:root {<\/strong><br \/>\n<strong>&#8211;primary-text-color: #333333; \/* Change to your desired color *\/<\/strong><br \/>\n<strong>&#8211;secondary-text-color: #666666; \/* Adjust as needed *\/<\/strong><br \/>\n<strong>}<\/strong><\/li>\n<li><strong>Include Your Custom CSS<\/strong>: Ensure your custom CSS file is included in your project after the PrimeVue CSS imports to apply your changes effectively.<\/li>\n<\/ol>\n<h3>Creating a Custom Theme for Text Color<\/h3>\n<p>If you want to create a completely custom theme based on an existing PrimeVue theme, follow these steps:<\/p>\n<ol>\n<li><strong>Copy the Default Theme CSS<\/strong>: Start by copying the CSS file of the theme you want to modify (e.g., <code>saga-blue.css<\/code>).<\/li>\n<li><strong>Modify the Variables<\/strong>: Open your copied CSS file and change the text color variables to your liking, similar to the previous section.<\/li>\n<li><strong>Save and Apply Your Custom Theme<\/strong>: Link your custom theme in the main JavaScript file:<br \/>\n<strong>import &#8216;.\/custom-theme.css&#8217;; \/\/ Link your custom theme<\/strong><\/li>\n<\/ol>\n<h3>Implementing Text Color Changes in Components<\/h3>\n<p>Once you\u2019ve set your text colors, it\u2019s time to apply them to PrimeVue components. You can use the default styles by ensuring your components utilize the global text color variables.<\/p>\n<ul>\n<li><strong>Example with a Button<\/strong>: <em><strong>&lt;Button label=&#8221;Click Me&#8221; class=&#8221;p-button&#8221; \/&gt;<\/strong><\/em><br \/>\nThe button will automatically adopt the primary text color defined in your theme.<\/li>\n<li><strong>Applying Specific Colors<\/strong>: If you want to apply specific text colors to certain components, use inline styles or class bindings to achieve this.\n<div class=\"contain-inline-size rounded-md border-[0.5px] border-token-border-medium relative bg-token-sidebar-surface-primary dark:bg-gray-950\">\n<div class=\"overflow-y-auto p-4\" dir=\"ltr\"><strong><em>&lt;h1 style=&#8221;color: var(&#8211;primary-text-color)&#8221;&gt;Welcome to My App&lt;\/h1&gt;<\/em><\/strong><\/div>\n<\/div>\n<div dir=\"ltr\"><\/div>\n<\/li>\n<\/ul>\n<h3>Testing and Adjusting Text Colors<\/h3>\n<p>After implementing your changes, it\u2019s crucial to test the text colors for accessibility. Ensure that your text contrasts well against background colors for easy readability. Tools like the WebAIM Color Contrast Checker can help assess the contrast ratio to ensure compliance with accessibility standards.<\/p>\n<h2>Troubleshooting Common Issues<\/h2>\n<p>Sometimes, text colors may not appear as expected. Here are a few common troubleshooting steps:<\/p>\n<ul>\n<li><strong>Text Color Not Applying<\/strong>: Ensure your custom CSS file is correctly linked and loaded after the PrimeVue styles. Check for any specificity issues that might override your styles.<\/li>\n<li><strong>Browser Compatibility<\/strong>: Test your app in different browsers to ensure consistency. Some older browsers may not support CSS variables.<\/li>\n<li><strong>Component Specificity<\/strong>: If certain components have their own styles, you may need to use more specific CSS selectors to enforce your text colors.<\/li>\n<\/ul>\n<h3>Conclusion<\/h3>\n<p>Customizing text colors in your PrimeVue theme is a straightforward process that can significantly enhance the look of your application. By using CSS variables and understanding how themes work in PrimeVue, you can easily set preset text colors that align with your brand. Experiment with different styles, ensure accessibility, and create a visually appealing user interface.<\/p>\n<p>If you found this guide helpful, feel free to share your thoughts or experiences in the comments below, and don&#8217;t forget to subscribe for more tips on enhancing your Vue.js applications!<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Customizing the text color in your PrimeVue theme can significantly enhance your application&#8217;s aesthetics and improve user experience. PrimeVue, a popular UI component library for Vue.js, allows for extensive styling options through its theming capabilities. This article will guide you through the process of presetting text colors in PrimeVue themes, ensuring your application looks polished and cohesive. <\/p>\n<p class=\"read-more-container\"><a href=\"https:\/\/resizemyimg.com\/blog\/how-to-preset-text-color-in-primevue-theme\/\" class=\"read-more button\">Read more<\/a><\/p>\n","protected":false},"author":100,"featured_media":5816,"comment_status":"closed","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[1],"tags":[],"class_list":["post-5815","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-blog","generate-columns","tablet-grid-50","mobile-grid-100","grid-parent","grid-50","no-featured-image-padding"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v23.3 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>How to Preset Text Color in PrimeVue Theme<\/title>\n<meta name=\"description\" content=\"Learn how to preset text color in PrimeVue themes with our easy guide. Customize your app&#039;s text colors using CSS variables and improve your UI.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/resizemyimg.com\/blog\/how-to-preset-text-color-in-primevue-theme\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How to Preset Text Color in PrimeVue Theme\" \/>\n<meta property=\"og:description\" content=\"Learn how to preset text color in PrimeVue themes with our easy guide. Customize your app&#039;s text colors using CSS variables and improve your UI.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/resizemyimg.com\/blog\/how-to-preset-text-color-in-primevue-theme\/\" \/>\n<meta property=\"og:site_name\" content=\"Resize my Image Blog\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/webfactoryltd\/\" \/>\n<meta property=\"article:published_time\" content=\"2024-11-07T16:05:16+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/resizemyimg.com\/blog\/wp-content\/uploads\/2024\/11\/How-to-Preset-Text-Color-in-PrimeVue-Theme.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"1600\" \/>\n\t<meta property=\"og:image:height\" content=\"800\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"rizwan\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@webfactoryltd\" \/>\n<meta name=\"twitter:site\" content=\"@webfactoryltd\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"rizwan\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"4 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/resizemyimg.com\/blog\/how-to-preset-text-color-in-primevue-theme\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/resizemyimg.com\/blog\/how-to-preset-text-color-in-primevue-theme\/\"},\"author\":{\"name\":\"rizwan\",\"@id\":\"https:\/\/resizemyimg.com\/blog\/#\/schema\/person\/69b26b5beb17b7d46301e2380efc0f98\"},\"headline\":\"How to Preset Text Color in PrimeVue Theme\",\"datePublished\":\"2024-11-07T16:05:16+00:00\",\"dateModified\":\"2024-11-07T16:05:16+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/resizemyimg.com\/blog\/how-to-preset-text-color-in-primevue-theme\/\"},\"wordCount\":794,\"publisher\":{\"@id\":\"https:\/\/resizemyimg.com\/blog\/#organization\"},\"image\":{\"@id\":\"https:\/\/resizemyimg.com\/blog\/how-to-preset-text-color-in-primevue-theme\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/resizemyimg.com\/blog\/wp-content\/uploads\/2024\/11\/How-to-Preset-Text-Color-in-PrimeVue-Theme.jpg\",\"articleSection\":[\"Blog\"],\"inLanguage\":\"en-US\"},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/resizemyimg.com\/blog\/how-to-preset-text-color-in-primevue-theme\/\",\"url\":\"https:\/\/resizemyimg.com\/blog\/how-to-preset-text-color-in-primevue-theme\/\",\"name\":\"How to Preset Text Color in PrimeVue Theme\",\"isPartOf\":{\"@id\":\"https:\/\/resizemyimg.com\/blog\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/resizemyimg.com\/blog\/how-to-preset-text-color-in-primevue-theme\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/resizemyimg.com\/blog\/how-to-preset-text-color-in-primevue-theme\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/resizemyimg.com\/blog\/wp-content\/uploads\/2024\/11\/How-to-Preset-Text-Color-in-PrimeVue-Theme.jpg\",\"datePublished\":\"2024-11-07T16:05:16+00:00\",\"dateModified\":\"2024-11-07T16:05:16+00:00\",\"description\":\"Learn how to preset text color in PrimeVue themes with our easy guide. Customize your app's text colors using CSS variables and improve your UI.\",\"breadcrumb\":{\"@id\":\"https:\/\/resizemyimg.com\/blog\/how-to-preset-text-color-in-primevue-theme\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/resizemyimg.com\/blog\/how-to-preset-text-color-in-primevue-theme\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/resizemyimg.com\/blog\/how-to-preset-text-color-in-primevue-theme\/#primaryimage\",\"url\":\"https:\/\/resizemyimg.com\/blog\/wp-content\/uploads\/2024\/11\/How-to-Preset-Text-Color-in-PrimeVue-Theme.jpg\",\"contentUrl\":\"https:\/\/resizemyimg.com\/blog\/wp-content\/uploads\/2024\/11\/How-to-Preset-Text-Color-in-PrimeVue-Theme.jpg\",\"width\":1600,\"height\":800,\"caption\":\"How to Preset Text Color in PrimeVue Theme\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/resizemyimg.com\/blog\/how-to-preset-text-color-in-primevue-theme\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/resizemyimg.com\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How to Preset Text Color in PrimeVue Theme\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/resizemyimg.com\/blog\/#website\",\"url\":\"https:\/\/resizemyimg.com\/blog\/\",\"name\":\"Resize my Image Blog\",\"description\":\"News, insights, tips&amp;tricks on image related business &amp; SaaS\",\"publisher\":{\"@id\":\"https:\/\/resizemyimg.com\/blog\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/resizemyimg.com\/blog\/?s={search_term_string}\"},\"query-input\":\"required name=search_term_string\"}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/resizemyimg.com\/blog\/#organization\",\"name\":\"WebFactory Ltd\",\"url\":\"https:\/\/resizemyimg.com\/blog\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/resizemyimg.com\/blog\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/resizemyimg.com\/blog\/wp-content\/uploads\/2019\/12\/webfactory_icon.png\",\"contentUrl\":\"https:\/\/resizemyimg.com\/blog\/wp-content\/uploads\/2019\/12\/webfactory_icon.png\",\"width\":300,\"height\":300,\"caption\":\"WebFactory Ltd\"},\"image\":{\"@id\":\"https:\/\/resizemyimg.com\/blog\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/www.facebook.com\/webfactoryltd\/\",\"https:\/\/x.com\/webfactoryltd\"]},{\"@type\":\"Person\",\"@id\":\"https:\/\/resizemyimg.com\/blog\/#\/schema\/person\/69b26b5beb17b7d46301e2380efc0f98\",\"name\":\"rizwan\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/resizemyimg.com\/blog\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/1a039797452387f5fb22250bfcebdf3b?s=96&d=monsterid&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/1a039797452387f5fb22250bfcebdf3b?s=96&d=monsterid&r=g\",\"caption\":\"rizwan\"},\"url\":\"https:\/\/resizemyimg.com\/blog\/author\/rizwan\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"How to Preset Text Color in PrimeVue Theme","description":"Learn how to preset text color in PrimeVue themes with our easy guide. Customize your app's text colors using CSS variables and improve your UI.","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/resizemyimg.com\/blog\/how-to-preset-text-color-in-primevue-theme\/","og_locale":"en_US","og_type":"article","og_title":"How to Preset Text Color in PrimeVue Theme","og_description":"Learn how to preset text color in PrimeVue themes with our easy guide. Customize your app's text colors using CSS variables and improve your UI.","og_url":"https:\/\/resizemyimg.com\/blog\/how-to-preset-text-color-in-primevue-theme\/","og_site_name":"Resize my Image Blog","article_publisher":"https:\/\/www.facebook.com\/webfactoryltd\/","article_published_time":"2024-11-07T16:05:16+00:00","og_image":[{"width":1600,"height":800,"url":"https:\/\/resizemyimg.com\/blog\/wp-content\/uploads\/2024\/11\/How-to-Preset-Text-Color-in-PrimeVue-Theme.jpg","type":"image\/jpeg"}],"author":"rizwan","twitter_card":"summary_large_image","twitter_creator":"@webfactoryltd","twitter_site":"@webfactoryltd","twitter_misc":{"Written by":"rizwan","Est. reading time":"4 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/resizemyimg.com\/blog\/how-to-preset-text-color-in-primevue-theme\/#article","isPartOf":{"@id":"https:\/\/resizemyimg.com\/blog\/how-to-preset-text-color-in-primevue-theme\/"},"author":{"name":"rizwan","@id":"https:\/\/resizemyimg.com\/blog\/#\/schema\/person\/69b26b5beb17b7d46301e2380efc0f98"},"headline":"How to Preset Text Color in PrimeVue Theme","datePublished":"2024-11-07T16:05:16+00:00","dateModified":"2024-11-07T16:05:16+00:00","mainEntityOfPage":{"@id":"https:\/\/resizemyimg.com\/blog\/how-to-preset-text-color-in-primevue-theme\/"},"wordCount":794,"publisher":{"@id":"https:\/\/resizemyimg.com\/blog\/#organization"},"image":{"@id":"https:\/\/resizemyimg.com\/blog\/how-to-preset-text-color-in-primevue-theme\/#primaryimage"},"thumbnailUrl":"https:\/\/resizemyimg.com\/blog\/wp-content\/uploads\/2024\/11\/How-to-Preset-Text-Color-in-PrimeVue-Theme.jpg","articleSection":["Blog"],"inLanguage":"en-US"},{"@type":"WebPage","@id":"https:\/\/resizemyimg.com\/blog\/how-to-preset-text-color-in-primevue-theme\/","url":"https:\/\/resizemyimg.com\/blog\/how-to-preset-text-color-in-primevue-theme\/","name":"How to Preset Text Color in PrimeVue Theme","isPartOf":{"@id":"https:\/\/resizemyimg.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/resizemyimg.com\/blog\/how-to-preset-text-color-in-primevue-theme\/#primaryimage"},"image":{"@id":"https:\/\/resizemyimg.com\/blog\/how-to-preset-text-color-in-primevue-theme\/#primaryimage"},"thumbnailUrl":"https:\/\/resizemyimg.com\/blog\/wp-content\/uploads\/2024\/11\/How-to-Preset-Text-Color-in-PrimeVue-Theme.jpg","datePublished":"2024-11-07T16:05:16+00:00","dateModified":"2024-11-07T16:05:16+00:00","description":"Learn how to preset text color in PrimeVue themes with our easy guide. Customize your app's text colors using CSS variables and improve your UI.","breadcrumb":{"@id":"https:\/\/resizemyimg.com\/blog\/how-to-preset-text-color-in-primevue-theme\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/resizemyimg.com\/blog\/how-to-preset-text-color-in-primevue-theme\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/resizemyimg.com\/blog\/how-to-preset-text-color-in-primevue-theme\/#primaryimage","url":"https:\/\/resizemyimg.com\/blog\/wp-content\/uploads\/2024\/11\/How-to-Preset-Text-Color-in-PrimeVue-Theme.jpg","contentUrl":"https:\/\/resizemyimg.com\/blog\/wp-content\/uploads\/2024\/11\/How-to-Preset-Text-Color-in-PrimeVue-Theme.jpg","width":1600,"height":800,"caption":"How to Preset Text Color in PrimeVue Theme"},{"@type":"BreadcrumbList","@id":"https:\/\/resizemyimg.com\/blog\/how-to-preset-text-color-in-primevue-theme\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/resizemyimg.com\/blog\/"},{"@type":"ListItem","position":2,"name":"How to Preset Text Color in PrimeVue Theme"}]},{"@type":"WebSite","@id":"https:\/\/resizemyimg.com\/blog\/#website","url":"https:\/\/resizemyimg.com\/blog\/","name":"Resize my Image Blog","description":"News, insights, tips&amp;tricks on image related business &amp; SaaS","publisher":{"@id":"https:\/\/resizemyimg.com\/blog\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/resizemyimg.com\/blog\/?s={search_term_string}"},"query-input":"required name=search_term_string"}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/resizemyimg.com\/blog\/#organization","name":"WebFactory Ltd","url":"https:\/\/resizemyimg.com\/blog\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/resizemyimg.com\/blog\/#\/schema\/logo\/image\/","url":"https:\/\/resizemyimg.com\/blog\/wp-content\/uploads\/2019\/12\/webfactory_icon.png","contentUrl":"https:\/\/resizemyimg.com\/blog\/wp-content\/uploads\/2019\/12\/webfactory_icon.png","width":300,"height":300,"caption":"WebFactory Ltd"},"image":{"@id":"https:\/\/resizemyimg.com\/blog\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/webfactoryltd\/","https:\/\/x.com\/webfactoryltd"]},{"@type":"Person","@id":"https:\/\/resizemyimg.com\/blog\/#\/schema\/person\/69b26b5beb17b7d46301e2380efc0f98","name":"rizwan","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/resizemyimg.com\/blog\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/1a039797452387f5fb22250bfcebdf3b?s=96&d=monsterid&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/1a039797452387f5fb22250bfcebdf3b?s=96&d=monsterid&r=g","caption":"rizwan"},"url":"https:\/\/resizemyimg.com\/blog\/author\/rizwan\/"}]}},"amp_enabled":true,"_links":{"self":[{"href":"https:\/\/resizemyimg.com\/blog\/wp-json\/wp\/v2\/posts\/5815"}],"collection":[{"href":"https:\/\/resizemyimg.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/resizemyimg.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/resizemyimg.com\/blog\/wp-json\/wp\/v2\/users\/100"}],"replies":[{"embeddable":true,"href":"https:\/\/resizemyimg.com\/blog\/wp-json\/wp\/v2\/comments?post=5815"}],"version-history":[{"count":2,"href":"https:\/\/resizemyimg.com\/blog\/wp-json\/wp\/v2\/posts\/5815\/revisions"}],"predecessor-version":[{"id":5823,"href":"https:\/\/resizemyimg.com\/blog\/wp-json\/wp\/v2\/posts\/5815\/revisions\/5823"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/resizemyimg.com\/blog\/wp-json\/wp\/v2\/media\/5816"}],"wp:attachment":[{"href":"https:\/\/resizemyimg.com\/blog\/wp-json\/wp\/v2\/media?parent=5815"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/resizemyimg.com\/blog\/wp-json\/wp\/v2\/categories?post=5815"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/resizemyimg.com\/blog\/wp-json\/wp\/v2\/tags?post=5815"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}