Changing the strikethrough color in Word isn't as straightforward as changing the font color or highlighting text. You've probably found yourself frustrated, scrolling through formatting options, wondering if it's even possible. The good news is, it is possible. Though it requires a bit of a workaround. Let's walk through the process together. I'll share some tips and tricks along the way to make your Word documents as customizable as possible.
Using Character Styles for Custom Strikethrough Colors
Alright, let's start with a simple yet effective method: using character styles. Word provides a range of styles that you can customize, and by tweaking these, you can achieve the strikethrough color change you're after.
- Create a New Style: Start by selecting some text in your document that you'd like to format. Then, go to the 'Styles' pane. You can find it on the Home tab. Click on the small arrow in the Styles group to open the Styles pane.
- New Style Option: Once the Styles pane is open, click on 'New Style' at the bottom. This will bring up a dialog box where you can create a new style.
- Name Your Style: Give your new style a meaningful name. For instance, "Custom Strikethrough."
- Modify Format: Click on 'Format' in the bottom left corner of the dialog box, then select 'Font.'
- Set Strikethrough and Color: In the Font dialog box, select 'Strikethrough' under Effects. Choose the color you want your strikethrough to be from the color menu.
- Apply Your Style: Click 'OK' to close the Font box, then 'OK' again to save your new style. Now, whenever you want to apply this strikethrough color, simply select the text and apply your style from the Styles pane.
With this method, you create a unique style that you can use repeatedly, saving you time and effort in the future. It's a neat way to keep your formatting consistent across different documents or sections.
Using VBA to Change Strikethrough Color
For those who are a bit more adventurous or familiar with coding, VBA (Visual Basic for Applications) offers a dynamic solution. Don't worry if you're not a coder. I'll guide you through it step-by-step.
Open VBA Editor: Press
Alt
+F11
to open the VBA editor. This might seem daunting at first, but it's just a special place where you can write scripts to automate tasks in Word.Create a New Module: In the VBA editor, right-click on 'ThisDocument' in the Project Explorer, select 'Insert,' then 'Module.' A new module should appear.
Write Your Script: Copy and paste the following code into the module:
Sub ChangeStrikethroughColor() Dim rng As Range Set rng = Selection.Range With rng.Font .Strikethrough = True .Color = RGB(255, 0, 0) ' Change the RGB values to your desired strikethrough color End With End Sub
Adjust RGB Values: In the code, adjust the
RGB(255, 0, 0)
to the RGB color values you wish to apply. You can find RGB values with a quick online search or using a color picker tool.Run Your Script: Close the VBA editor and return to your Word document. Select the text you want to apply the strikethrough color to, then press
Alt
+F8
. This opens the 'Macro' dialog box. Select your macro from the list and hit 'Run.'
This method is powerful and allows for more flexible customization. Plus, once you get the hang of it, you can automate a lot of repetitive tasks in Word using VBA.
Workarounds with Text Boxes
Text boxes aren't just for fancy layouts. They can also be a creative workaround for changing strikethrough colors. Let's see how this works:
- Insert a Text Box: Go to the 'Insert' tab, click on 'Text Box,' and select 'Draw Text Box.'
- Enter Your Text: Type or paste the text you want inside the text box.
- Format the Text: Highlight the text inside the text box. Go to the 'Home' tab and apply the strikethrough effect. Then, change the font color to the color you want your strikethrough to be.
- Remove Text Box Outline: Click on the border of the text box to select it. Go to 'Format' under 'Drawing Tools,' and set the 'Shape Outline' to 'No Outline' to remove the line around your text box.
- Position the Text Box: Drag the text box to the desired position in your document.
Text boxes give you a visual way to manage text formatting, especially when you want different sections of your document to stand out. It requires a bit more effort but can be very effective for specific formatting needs.

Using WordArt for Enhanced Visuals
If you're aiming for something a bit more eye-catching, WordArt might be the solution. It allows for decorative text and gives you the flexibility to customize colors and effects.
- Insert WordArt: Click on the 'Insert' tab, then select 'WordArt.' Choose any style you like.
- Enter Your Text: Replace the placeholder text with your desired content.
- Apply Strikethrough: Highlight the text, then go to the 'Format' tab under 'WordArt Tools.' Choose 'Text Effects' and then 'Strikethrough' from the dropdown menu.
- Change Color: While still in the 'Format' tab, use the 'Text Fill' option to change the color of your strikethrough effect.
WordArt is a bit flashy for standard documents but can add a creative touch to presentations or reports where visual impact is crucial. Plus, it's a fun way to explore Word's artistic capabilities.
Incorporating Conditional Formatting Techniques
While Word doesn't natively support conditional formatting like Excel, we can borrow some techniques to simulate similar effects for strikethrough colors.
- Create a Template: Set up a Word document with different strikethrough color styles as templates.
- Use Bookmarks: Apply bookmarks to sections of your document where you want specific strikethrough colors.
- Automate with Macros: Record a macro to apply these styles based on certain triggers or keywords you define. This requires a bit of VBA knowledge but is very powerful once set up.
Conditional formatting techniques are more advanced but offer a high level of control over your document's appearance. It's like setting rules for your document to follow, which is immensely satisfying when it all comes together.
Exploring Third-Party Add-Ins
Sometimes, Word's built-in functionality isn't enough. This is where third-party add-ins come in handy. While not all add-ins focus on strikethrough colors, some offer extended formatting options that can achieve similar effects.
- Find Add-Ins: Go to the 'Insert' tab, click on 'My Add-ins,' and then 'Store.' Search for add-ins that offer advanced formatting capabilities.
- Download and Install: Once you find a suitable add-in, click 'Add' to install it. Follow any on-screen instructions to complete the setup.
- Experiment with Features: Explore the features of the add-in. Some might offer customizable strikethrough colors or similar features that enhance your document's look.
Third-party add-ins expand Word's capabilities, potentially providing just the right tool for your specific needs. However, always ensure that the add-ins are from reputable sources to avoid any security issues.
Utilizing Spell for Document Editing
While Word is a fantastic tool, sometimes you need a bit of extra help to get things just right. That's where Spell comes into play. It's like having a supercharged version of Word with AI capabilities right at your fingertips.
With Spell, you can:
- Generate Drafts Instantly: Describe your document needs, and Spell generates a high-quality draft in seconds, saving you time and energy.
- Edit with Ease: Make changes using simple, natural language commands. Say goodbye to the hassle of formatting issues when switching between tools.
- Collaborate in Real-Time: Share and edit documents with your team simultaneously, just like in Google Docs, but with the added power of AI.
Spell integrates AI directly into the document editing process, making it easier to achieve the perfect look and feel for your documents without the typical frustrations.
Practical Applications and Examples
Let's look at some practical scenarios where changing the strikethrough color can make a difference:
- Editing Drafts: Use different strikethrough colors to indicate various stages of editing or review. For instance, red for deletions, blue for suggestions, and green for approved changes.
- Tracking Changes: In collaborative documents, different strikethrough colors can represent changes made by various team members, making it easy to track contributions.
- Highlighting Errors: In educational settings, different colors can be used to mark different types of errors, helping students easily identify areas that need improvement.
These applications show how versatile this feature can be, transforming how you manage and present your documents.


Tips for Maintaining Consistency Across Documents
Consistency is key in professional documents, and using styles can help maintain it:
- Set Up Templates: Create Word templates with pre-defined styles that include your custom strikethrough color. This ensures uniformity across all documents.
- Use Document Themes: Word allows you to set a theme that applies to all elements of your document, including styles. Customize themes to include your unique strikethrough styles.
- Document Your Styles: Keep a record of the styles used, especially if you work in a team. This documentation can be a quick reference for anyone needing to apply the same formatting.
By implementing these tips, you ensure that your documents not only look good but also convey professionalism and attention to detail.
Final Thoughts
Changing the strikethrough color in Word might not be straightforward, but with a little creativity and some helpful tools, it's definitely achievable. Whether you're using character styles, VBA, or third-party add-ins, the possibilities are endless. And if you're looking to streamline this and other document editing tasks, Spell offers a seamless experience with its AI-powered capabilities. It's all about making your workflow smoother and more efficient.