{"id":9962,"date":"2024-12-25T17:05:14","date_gmt":"2024-12-25T10:05:14","guid":{"rendered":"https:\/\/headcreative.co.id\/?p=9962"},"modified":"2024-12-31T09:34:27","modified_gmt":"2024-12-31T02:34:27","slug":"termux-color-codes","status":"publish","type":"post","link":"https:\/\/headcreative.co.id\/en\/termux-color-codes\/","title":{"rendered":"Termux Color Codes: A Complete Guide for Beginners"},"content":{"rendered":"<h2>What Are Color Codes in Termux?<\/h2>\n<p>If you&#8217;re a Termux user, you might have felt bored with the monotonous appearance of the terminal. This is where Termux Color Codes play a crucial role! By using color codes, you can add a personal touch to the terminal, make it visually appealing, and even boost your productivity. But what exactly are color codes in Termux? Let\u2019s dive deeper.<\/p>\n<h3>Understanding Termux Color Codes and Their Functions<\/h3>\n<p>Color codes in Termux refer to a combination of instructions used to change the text or background color in the terminal. These codes typically follow the standard ANSI Escape Codes format, allowing the terminal to display various colors and text styles, such as bold, italic, or even underline.<\/p>\n<h3>Why Are Termux Color Codes Important?<\/h3>\n<ol>\n<li><strong>Enhanced Visualization<\/strong>: Color codes help differentiate types of information in the terminal, e.g., warning text can be red, while success messages can be green.<\/li>\n<li><strong>Personalized Appearance<\/strong>: You can make Termux look cooler and reflect your personality.<\/li>\n<li><strong>Work Efficiency<\/strong>: With the right colors, you can quickly identify important information at a glance.<\/li>\n<\/ol>\n<h3>Format of Color Codes in the Terminal<\/h3>\n<p>To understand Termux color codes, you need to familiarize yourself with the basic format. Here are some key elements of ANSI Escape Codes:<\/p>\n<h4>Basic Code:<\/h4>\n<p><code>\\033[<\/code> is the opening character for all color codes.<\/p>\n<h4>Text Color Codes:<\/h4>\n<ul>\n<li><code>31<\/code>: Red<\/li>\n<li><code>32<\/code>: Green<\/li>\n<li><code>33<\/code>: Yellow<\/li>\n<li><code>34<\/code>: Blue<\/li>\n<li><code>35<\/code>: Magenta<\/li>\n<li><code>36<\/code>: Cyan<\/li>\n<\/ul>\n<h4>Background Color Codes:<\/h4>\n<ul>\n<li>Similar to text codes but with a prefix of <code>4<\/code> (e.g., <code>41<\/code> for a red background).<\/li>\n<\/ul>\n<h4>Combination Format:<\/h4>\n<p>Example: <code>\\033[32;1m<\/code> produces bright green text.<\/p>\n<h4>Full Format Example:<\/h4>\n<p><code>\\033[text_color;background_color;effectm<\/code><\/p>\n<h4>Additional Effects:<\/h4>\n<ul>\n<li><code>1<\/code>: Bold<\/li>\n<li><code>4<\/code>: Underline<\/li>\n<\/ul>\n<h3>Simple Examples of Using Termux Color Codes<\/h3>\n<h4>1. Colored Text<\/h4>\n<p>You can add colors to text with the following command:<\/p>\n<pre><code class=\"language-bash\">echo -e \"\\033[32mThis text is green!\\033[0m\"\r\n<\/code><\/pre>\n<p><strong>Explanation<\/strong>:<\/p>\n<ul>\n<li><code>\\033[32m<\/code>: Activates green color.<\/li>\n<li><code>\\033[0m<\/code>: Resets to default color.<\/li>\n<\/ul>\n<h4>2. Creating an Interactive Script<\/h4>\n<p>To make scripts more engaging, use color codes to clarify the output:<\/p>\n<pre><code class=\"language-bash\"># Simple script with colors\r\necho -e \"\\033[34mWelcome to Termux!\\033[0m\"\r\necho -e \"\\033[33mEnter your name:\\033[0m\"\r\nread name\r\necho -e \"\\033[32mHello, $name! Have a great day.\\033[0m\"\r\n<\/code><\/pre>\n<h3>Adding Colors to Configuration Files<\/h3>\n<p>To make these colors permanent in Termux, add the following configuration to your <code>.bashrc<\/code> or <code>.zshrc<\/code> file:<\/p>\n<pre><code class=\"language-bash\">PS1='\\[\\033[36m\\]\\u@\\h:\\w\\$\\[\\033[0m\\]'\r\n<\/code><\/pre>\n<p>This creates a prompt with cyan-colored text.<\/p>\n<h2>How to Use Color Codes in Termux<\/h2>\n<p>Now that you understand Termux Color Codes, it\u2019s time to learn how to use them in your terminal. The steps below will help you activate and utilize color codes easily, even if you\u2019re a beginner.<\/p>\n<h4>Practical Steps to Add Colors in Termux<\/h4>\n<ol>\n<li><strong>Open Termux<\/strong><br \/>\nLaunch the Termux app on your device. If it\u2019s not installed, download it via GitHub or an alternative app store.<\/li>\n<li><strong>Update Termux<\/strong><br \/>\nEnsure Termux is updated by running:<\/p>\n<pre><code class=\"language-bash\">pkg update &amp;&amp; pkg upgrade\r\n<\/code><\/pre>\n<\/li>\n<li><strong>Understand Color Code Syntax<\/strong><br \/>\nColor codes can be applied directly using the <code>echo<\/code> command or through configuration files like <code>.bashrc<\/code> or <code>.zshrc<\/code>.<\/li>\n<li><strong>Apply Colors Using Echo Command<\/strong><br \/>\nTry these commands to see color effects instantly:<\/p>\n<ul>\n<li><strong>Green Text<\/strong>:\n<pre><code class=\"language-bash\">echo -e \"\\033[32mThis text is green.\\033[0m\"\r\n<\/code><\/pre>\n<\/li>\n<li><strong>Blue Text<\/strong>:\n<pre><code class=\"language-bash\">echo -e \"\\033[34mThis text is blue.\\033[0m\"\r\n<\/code><\/pre>\n<\/li>\n<li><strong>Red Text<\/strong>:\n<pre><code class=\"language-bash\">echo -e \"\\033[31mWarning! This text is red.\\033[0m\"\r\n<\/code><\/pre>\n<\/li>\n<\/ul>\n<\/li>\n<li><strong>Test a Script with Colors<\/strong><br \/>\nCreate a simple script to experiment with color combinations. Create a new file called <code>colors.sh<\/code>:<\/p>\n<pre><code class=\"language-bash\">nano colors.sh\r\n<\/code><\/pre>\n<p>Add the following script:<\/p>\n<pre><code class=\"language-bash\">#!\/bin\/bash\r\necho -e \"\\033[32mWelcome to Termux!\\033[0m\"\r\necho -e \"\\033[33mEnter your name:\\033[0m\"\r\nread name\r\necho -e \"\\033[34mHello, $name. Enjoy experimenting with Termux Color Codes!\\033[0m\"\r\n<\/code><\/pre>\n<p>Save with <code>Ctrl+O<\/code>, then <code>Ctrl+X<\/code>. Run the script:<\/p>\n<pre><code class=\"language-bash\">bash colors.sh\r\n<\/code><\/pre>\n<\/li>\n<li><strong>Use Configuration Files for Permanent Colors<\/strong>\n<ul>\n<li>Open Configuration File:\n<ul>\n<li>For Bash:\n<pre><code class=\"language-bash\">nano ~\/.bashrc\r\n<\/code><\/pre>\n<\/li>\n<li>For Zsh:\n<pre><code class=\"language-bash\">nano ~\/.zshrc\r\n<\/code><\/pre>\n<\/li>\n<\/ul>\n<\/li>\n<li>Add a Custom Prompt:\n<pre><code class=\"language-bash\">PS1='\\[\\033[32m\\]\\u@\\h:\\w\\$\\[\\033[0m\\]'\r\n<\/code><\/pre>\n<p><strong>Explanation<\/strong>:<\/p>\n<ul>\n<li><code>\\033[32m<\/code>: Sets text color to green.<\/li>\n<li><code>\\u<\/code>: Displays the username.<\/li>\n<li><code>\\h<\/code>: Displays the hostname.<\/li>\n<li><code>\\w<\/code>: Displays the current working directory.<\/li>\n<\/ul>\n<\/li>\n<li>Save and Apply Changes:\n<pre><code class=\"language-bash\">source ~\/.bashrc\r\n<\/code><\/pre>\n<\/li>\n<\/ul>\n<\/li>\n<\/ol>\n<h3>Final Tips for Beginners<\/h3>\n<ul>\n<li>Use colors wisely. Too many combinations can make the terminal look cluttered and hard to read.<\/li>\n<li>Backup your <code>.bashrc<\/code> or <code>.zshrc<\/code> file before editing so you can revert to the default settings if something goes wrong.<\/li>\n<li>Explore advanced Termux themes from GitHub, such as <code>termux-styling<\/code>, for more customization options.<\/li>\n<\/ul>\n<blockquote><p><strong>Read More<\/strong>: <a href=\"https:\/\/headcreative.co.id\/en\/what-is-user-interface-ui\/#google_vignette\">What Is User Interface (UI)? Definition, Functions, and Examples<\/a><\/p><\/blockquote>\n<h2>Customizing Termux Colors: Make Your Terminal More Appealing<\/h2>\n<p>For Termux users, one of the best ways to enhance your working experience is through color customization. Not only does it make your terminal look more attractive, but it also helps you easily identify important text. This article will discuss how to change the default color theme using <code>colors.properties<\/code>, leverage themes from GitHub, and provide tips on selecting eye-friendly color combinations.<\/p>\n<h3>How to Change the Default Color Theme Using Colors.properties<\/h3>\n<p>The <code>colors.properties<\/code> file is key to modifying the color theme in Termux. This file manages the color scheme used for text, background, and other terminal elements.<\/p>\n<h4>Steps to Customize Colors.properties<\/h4>\n<ol>\n<li><strong>Access Termux Configuration Directory<\/strong><br \/>\nRun the following command to navigate to the Termux configuration folder:<\/p>\n<pre><code class=\"language-bash\">cd ~\/.termux\r\n<\/code><\/pre>\n<p>If the folder doesn\u2019t exist, create it with:<\/p>\n<pre><code class=\"language-bash\">mkdir ~\/.termux\r\n<\/code><\/pre>\n<\/li>\n<li><strong>Edit or Create the Colors.properties File<\/strong><br \/>\nUse a text editor like <code>nano<\/code> to create or edit the <code>colors.properties<\/code> file:<\/p>\n<pre><code class=\"language-bash\">nano colors.properties\r\n<\/code><\/pre>\n<\/li>\n<li><strong>Add Termux Color Codes<\/strong><br \/>\nInput your preferred color configuration. Example:<\/p>\n<pre><code class=\"language-makefile\">background=#1E1E1E\r\nforeground=#FFFFFF\r\ncursor=#00FF00\r\ncolor0=#000000\r\ncolor1=#FF0000\r\ncolor2=#00FF00\r\ncolor3=#FFFF00\r\ncolor4=#0000FF\r\ncolor5=#FF00FF\r\ncolor6=#00FFFF\r\ncolor7=#FFFFFF\r\n<\/code><\/pre>\n<ul>\n<li><code>background<\/code>: Background color.<\/li>\n<li><code>foreground<\/code>: Text color.<\/li>\n<li><code>cursor<\/code>: Cursor color.<\/li>\n<\/ul>\n<\/li>\n<li><strong>Save and Apply Changes<\/strong><br \/>\nAfter editing, save the file with <code>Ctrl+O<\/code>, then exit with <code>Ctrl+X<\/code>. Apply the changes by running:<\/p>\n<pre><code class=\"language-bash\">termux-reload-settings\r\n<\/code><\/pre>\n<\/li>\n<\/ol>\n<h3>Using GitHub Themes for Color Customization<\/h3>\n<p>GitHub is an excellent resource for ready-made Termux themes. You can find various themes in repositories like <strong>termux-styling<\/strong> or <strong>termux-ohmyzsh<\/strong>.<\/p>\n<h4>Steps to Use Themes from GitHub<\/h4>\n<ol>\n<li><strong>Download Theme Repository<\/strong><br \/>\nUse the <code>git<\/code> command to download a theme repository from GitHub. Example:<\/p>\n<pre><code class=\"language-bash\">git clone https:\/\/github.com\/adi1090x\/termux-style.git\r\n<\/code><\/pre>\n<\/li>\n<li><strong>Run Theme Script<\/strong><br \/>\nNavigate to the downloaded theme folder and execute the script to select a theme:<\/p>\n<pre><code class=\"language-bash\">cd termux-style\r\nbash install.sh\r\n<\/code><\/pre>\n<p>The script typically provides a simple interface to choose a theme.<\/li>\n<li><strong>Select Your Favorite Theme<\/strong><br \/>\nFollow the on-screen instructions to select and apply your desired theme. You\u2019ll see the color changes instantly in your terminal.<\/li>\n<li><strong>Further Customization (Optional)<\/strong><br \/>\nIf the GitHub theme doesn\u2019t fully match your preference, you can edit configuration files like <code>colors.properties<\/code> after applying the theme.<\/li>\n<\/ol>\n<h3>Tips for Choosing Eye-Friendly Color Combinations<\/h3>\n<p>Using Termux Color Codes for customization is exciting, but choosing the right colors is crucial for eye comfort, especially if you work for long hours.<\/p>\n<ol>\n<li><strong>Choose a Dark Background<\/strong><br \/>\nBackground colors like black (<code>#000000<\/code>) or dark gray (<code>#1E1E1E<\/code>) reduce eye strain, especially in low-light environments.<\/li>\n<li><strong>Use High-Contrast Text Colors<\/strong><br \/>\nWhite text (<code>#FFFFFF<\/code>) or bright green (<code>#00FF00<\/code>) works well on dark backgrounds.<\/p>\n<ul>\n<li>Avoid low-contrast text colors like light gray on gray backgrounds.<\/li>\n<\/ul>\n<\/li>\n<li><strong>Limit the Use of Bright Colors<\/strong><br \/>\nColors like red (<code>#FF0000<\/code>) or bright yellow (<code>#FFFF00<\/code>) are great for highlighting important text.<\/p>\n<ul>\n<li>Avoid overusing these colors as they can be distracting.<\/li>\n<\/ul>\n<\/li>\n<li><strong>Experiment with Day and Night Themes<\/strong><br \/>\nCreate two color configurations\u2014one for daytime with a light background and one for nighttime with a dark background.<\/li>\n<\/ol>\n<blockquote><p><strong>Also, Check Out Our Services: <a href=\"https:\/\/headcreative.co.id\/en\/website-development-services\/\">Website Development Solutions<\/a><\/strong><\/p><\/blockquote>\n<h2>Tips and Tricks for Beginners: Optimize the Use of Termux Color Codes<\/h2>\n<p>After learning how to apply Termux Color Codes and customize your terminal, it\u2019s time to explore additional tricks to ensure a smooth experience. In this section, we\u2019ll discuss debugging steps for when color codes don\u2019t work, additional resources for further exploration, and recommended plugins or scripts to enhance color flexibility in Termux.<\/p>\n<h3>Debugging Steps if Color Codes Don\u2019t Work<\/h3>\n<p>Sometimes, the color codes you\u2019ve applied may not function as expected. Here\u2019s how to identify and fix such issues:<\/p>\n<h4>Check the Syntax of the Color Code<\/h4>\n<p>Ensure that the color code format is correct. For example:<\/p>\n<pre><code class=\"language-bash\">echo -e \"\\033[32mThis text is green.\\033[0m\"\r\n<\/code><\/pre>\n<p>Minor errors, such as forgetting to close the code with <code>\\033[0m<\/code>, can result in colors not displaying correctly.<\/p>\n<h4>Verify Configuration Files<\/h4>\n<p>If you\u2019ve edited <code>.bashrc<\/code> or <code>.zshrc<\/code>, make sure the changes were saved properly. Apply the configurations using:<\/p>\n<pre><code class=\"language-bash\">source ~\/.bashrc\r\n<\/code><\/pre>\n<p>If there\u2019s an issue with the file, revert to the default settings.<\/p>\n<h4>Ensure Terminal Supports ANSI Escape Codes<\/h4>\n<p>Not all terminals support ANSI Escape Codes. However, Termux supports them by default. If the color codes still don\u2019t work:<\/p>\n<ol>\n<li>Reinstall Termux.<\/li>\n<li>Check if your terminal emulator is set to support colors.<\/li>\n<\/ol>\n<h4>Use Debugging Logs<\/h4>\n<p>Add simple debugging commands to your script to identify issues:<\/p>\n<pre><code class=\"language-bash\">set -x\r\necho -e \"\\033[31mRed text for debugging.\\033[0m\"\r\nset +x\r\n<\/code><\/pre>\n<h3>Additional Resources for Further Exploration<\/h3>\n<p>Optimizing the use of Termux Color Codes requires continuous exploration. Here are some helpful resources:<\/p>\n<h4>GitHub Repositories for Themes and Colors<\/h4>\n<ul>\n<li><strong>Termux-Styling<\/strong>: Offers themes and color schemes for Termux.<\/li>\n<li><strong>Oh-My-Zsh<\/strong>: A collection of plugins for Zsh, including color customization.<\/li>\n<\/ul>\n<h4>ANSI Escape Codes Documentation<\/h4>\n<ul>\n<li><strong><a href=\"https:\/\/en.wikipedia.org\/wiki\/ANSI_escape_code\" target=\"_blank\" rel=\"noopener\">ANSI Escape Codes &#8211; Wikipedia<\/a><\/strong>: A detailed explanation of color codes and text styles.<\/li>\n<\/ul>\n<h4>Termux Forums and Communities<\/h4>\n<ul>\n<li><strong>Reddit: r\/termux<\/strong>: A hub for discussions and tips from the Termux community.<\/li>\n<li><strong>Termux Official Discord<\/strong>: An active community for real-time discussions with other users.<\/li>\n<\/ul>\n<h3>Recommended Plugins or Scripts for Enhanced Color Support<\/h3>\n<p>To maximize your experience with Termux Color Codes, here are some recommended plugins and scripts:<\/p>\n<h4><strong>Termux-Styling<\/strong><\/h4>\n<p>This plugin simplifies theme and color settings. Install it using:<\/p>\n<pre><code class=\"language-bash\">pkg install termux-styling\r\n<\/code><\/pre>\n<p>You can choose from a variety of pre-made color combinations.<\/p>\n<h4><strong>Powerlevel10k (Zsh Theme)<\/strong><\/h4>\n<p>A Zsh theme that supports advanced color and design options. To install:<\/p>\n<pre><code class=\"language-bash\">git clone --depth=1 https:\/\/github.com\/romkatv\/powerlevel10k.git ~\/powerlevel10k\r\necho 'source ~\/powerlevel10k\/powerlevel10k.zsh-theme' &gt;&gt;~\/.zshrc\r\nsource ~\/.zshrc\r\n<\/code><\/pre>\n<h4><strong>Custom Prompt Color Script<\/strong><\/h4>\n<p>Create a simple script to set prompt colors based on your needs. Example:<\/p>\n<pre><code class=\"language-bash\">PS1='\\[\\033[32m\\]\\u@\\h:\\w\\$\\[\\033[0m\\] '\r\n<\/code><\/pre>\n<h2>Conclusion<\/h2>\n<p>Termux Color Codes are a simple yet powerful tool to enhance the aesthetics and functionality of your terminal. From understanding the format of color codes to applying them through simple commands, and even advanced customization using configuration files like <code>colors.properties<\/code> or themes from GitHub, you have many options to make your terminal both appealing and efficient.<\/p>\n<h4>Key Takeaways from This Guide:<\/h4>\n<ol>\n<li><strong>Basic Understanding<\/strong>: You\u2019ve learned what Termux Color Codes are, their ANSI Escape Codes format, and how they can personalize your terminal.<\/li>\n<li><strong>Practical Steps<\/strong>: We\u2019ve covered how to add colors in Termux through direct commands or permanent customization using <code>.bashrc<\/code> or <code>.zshrc<\/code>.<\/li>\n<li><strong>Advanced Customization<\/strong>: Themes from GitHub and the <code>colors.properties<\/code> file allow you to create a unique terminal appearance.<\/li>\n<li><strong>Tips for Beginners<\/strong>: From debugging color codes and accessing additional resources to plugin recommendations, everything is designed to help you maximize your Termux experience.<\/li>\n<\/ol>\n<p>With all this knowledge, you\u2019re now ready to turn Termux into not just a terminal but a workspace that\u2019s comfortable and reflects your personality.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>What Are Color Codes in Termux? If you&#8217;re a Termux user, you might have felt bored with the monotonous appearance [&hellip;]<\/p>\n","protected":false},"author":5,"featured_media":8822,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"site-sidebar-layout":"default","site-content-layout":"","ast-site-content-layout":"default","site-content-style":"default","site-sidebar-style":"default","ast-global-header-display":"","ast-banner-title-visibility":"","ast-main-header-display":"","ast-hfb-above-header-display":"","ast-hfb-below-header-display":"","ast-hfb-mobile-header-display":"","site-post-title":"","ast-breadcrumbs-content":"","ast-featured-img":"","footer-sml-layout":"","ast-disable-related-posts":"","theme-transparent-header-meta":"default","adv-header-id-meta":"","stick-header-meta":"","header-above-stick-meta":"","header-main-stick-meta":"","header-below-stick-meta":"","astra-migrate-meta-layouts":"set","ast-page-background-enabled":"default","ast-page-background-meta":{"desktop":{"background-color":"var(--ast-global-color-4)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"tablet":{"background-color":"","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"mobile":{"background-color":"","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""}},"ast-content-background-meta":{"desktop":{"background-color":"var(--ast-global-color-5)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"tablet":{"background-color":"var(--ast-global-color-5)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"mobile":{"background-color":"var(--ast-global-color-5)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""}},"footnotes":""},"categories":[173,178],"tags":[],"class_list":["post-9962","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-coding","category-servers"],"_links":{"self":[{"href":"https:\/\/headcreative.co.id\/en\/wp-json\/wp\/v2\/posts\/9962","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/headcreative.co.id\/en\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/headcreative.co.id\/en\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/headcreative.co.id\/en\/wp-json\/wp\/v2\/users\/5"}],"replies":[{"embeddable":true,"href":"https:\/\/headcreative.co.id\/en\/wp-json\/wp\/v2\/comments?post=9962"}],"version-history":[{"count":0,"href":"https:\/\/headcreative.co.id\/en\/wp-json\/wp\/v2\/posts\/9962\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/headcreative.co.id\/en\/wp-json\/wp\/v2\/media\/8822"}],"wp:attachment":[{"href":"https:\/\/headcreative.co.id\/en\/wp-json\/wp\/v2\/media?parent=9962"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/headcreative.co.id\/en\/wp-json\/wp\/v2\/categories?post=9962"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/headcreative.co.id\/en\/wp-json\/wp\/v2\/tags?post=9962"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}